com.netscape.certsrv.connector
Interface IHttpPKIMessage

All Superinterfaces:
IPKIMessage, java.io.Serializable

public interface IHttpPKIMessage
extends IPKIMessage

This represents a Http PKI message. It contains simple name/value pair values. Also maintains information about the status and type of the message.

Version:
$Revision: 1211 $, $Date: 2010-08-18 10:15:37 -0700 (Wed, 18 Aug 2010) $

Method Summary
 void fromRequest(IRequest r)
          Copies contents of request to make a simple name/value message.
 java.lang.String getReqId()
          Retrieves the request identifier.
 java.lang.String getReqType()
          Retrieves the request type.
 void toRequest(IRequest r)
          Copies contents to request.
 
Methods inherited from interface com.netscape.certsrv.connector.IPKIMessage
getReqStatus
 

Method Detail

getReqType

java.lang.String getReqType()
Retrieves the request type.

Specified by:
getReqType in interface IPKIMessage
Returns:
String with the type of request.

getReqId

java.lang.String getReqId()
Retrieves the request identifier.

Specified by:
getReqId in interface IPKIMessage
Returns:
String of name of request.

fromRequest

void fromRequest(IRequest r)
Copies contents of request to make a simple name/value message.

Specified by:
fromRequest in interface IPKIMessage
Parameters:
r - Instance of IRequest to be copied from.

toRequest

void toRequest(IRequest r)
Copies contents to request.

Specified by:
toRequest in interface IPKIMessage
Parameters:
r - Instance of IRequest to be copied to.