Package com.netscape.cmscore.connector
Class HttpPKIMessage
- java.lang.Object
-
- com.netscape.cmscore.connector.HttpPKIMessage
-
- All Implemented Interfaces:
com.netscape.certsrv.connector.IHttpPKIMessage
,com.netscape.certsrv.connector.IPKIMessage
,java.io.Serializable
public class HttpPKIMessage extends java.lang.Object implements com.netscape.certsrv.connector.IHttpPKIMessage
simple name/value pair message.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HttpPKIMessage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
fromRequest(com.netscape.certsrv.request.IRequest r)
copy contents of request to make a simple name/value message.java.lang.String
getReqId()
Retrieves the request identifier.java.lang.String
getReqRealm()
Retrieves the request realmjava.lang.String
getReqStatus()
Returns status of request.java.lang.String
getReqType()
Retrieves the request type.void
toRequest(com.netscape.certsrv.request.IRequest r)
copy contents to request.
-
-
-
Method Detail
-
getReqStatus
public java.lang.String getReqStatus()
Description copied from interface:com.netscape.certsrv.connector.IPKIMessage
Returns status of request.- Specified by:
getReqStatus
in interfacecom.netscape.certsrv.connector.IPKIMessage
- Returns:
- String of request status.
-
getReqType
public java.lang.String getReqType()
Description copied from interface:com.netscape.certsrv.connector.IHttpPKIMessage
Retrieves the request type.- Specified by:
getReqType
in interfacecom.netscape.certsrv.connector.IHttpPKIMessage
- Specified by:
getReqType
in interfacecom.netscape.certsrv.connector.IPKIMessage
- Returns:
- String with the type of request.
-
getReqId
public java.lang.String getReqId()
Description copied from interface:com.netscape.certsrv.connector.IHttpPKIMessage
Retrieves the request identifier.- Specified by:
getReqId
in interfacecom.netscape.certsrv.connector.IHttpPKIMessage
- Specified by:
getReqId
in interfacecom.netscape.certsrv.connector.IPKIMessage
- Returns:
- String of name of request.
-
getReqRealm
public java.lang.String getReqRealm()
Description copied from interface:com.netscape.certsrv.connector.IPKIMessage
Retrieves the request realm- Specified by:
getReqRealm
in interfacecom.netscape.certsrv.connector.IPKIMessage
- Returns:
- String of authz realm
-
fromRequest
public void fromRequest(com.netscape.certsrv.request.IRequest r)
copy contents of request to make a simple name/value message.- Specified by:
fromRequest
in interfacecom.netscape.certsrv.connector.IHttpPKIMessage
- Specified by:
fromRequest
in interfacecom.netscape.certsrv.connector.IPKIMessage
- Parameters:
r
- Instance of IRequest to be copied from.
-
toRequest
public void toRequest(com.netscape.certsrv.request.IRequest r)
copy contents to request.- Specified by:
toRequest
in interfacecom.netscape.certsrv.connector.IHttpPKIMessage
- Specified by:
toRequest
in interfacecom.netscape.certsrv.connector.IPKIMessage
- Parameters:
r
- Instance of IRequest to be copied to.
-
-