Package com.netscape.certsrv.connector
Interface IPKIMessage
-
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
IHttpPKIMessage
- All Known Implementing Classes:
HttpPKIMessage
public interface IPKIMessage extends java.io.SerializableMessages that are serialized and go over the wire. It must be serializable, and later will be inherited by CRMF message.- Version:
- $Revision$, $Date$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfromRequest(IRequest r)Makes a PKIMessage from a request PKIMessage will be sent to wire.java.lang.StringgetReqId()Retrieves the request identifer.java.lang.StringgetReqRealm()Retrieves the request realmjava.lang.StringgetReqStatus()Returns status of request.java.lang.StringgetReqType()Retrieves the request type.voidtoRequest(IRequest r)Copies contents of PKIMessage to the request PKIMessage is from the wire.
-
-
-
Method Detail
-
getReqStatus
java.lang.String getReqStatus()
Returns status of request.- Returns:
- String of request status.
-
getReqType
java.lang.String getReqType()
Retrieves the request type.- Returns:
- String of type of request.
-
getReqId
java.lang.String getReqId()
Retrieves the request identifer.- Returns:
- String of name of request.
-
fromRequest
void fromRequest(IRequest r)
Makes a PKIMessage from a request PKIMessage will be sent to wire.- Parameters:
r- Request to copy from.
-
toRequest
void toRequest(IRequest r)
Copies contents of PKIMessage to the request PKIMessage is from the wire.- Parameters:
r- Request to copy to.
-
getReqRealm
java.lang.String getReqRealm()
Retrieves the request realm- Returns:
- String of authz realm
-
-