Package com.sun.xml.wss.provider.wsit
Class SOAPAuthParam
java.lang.Object
com.sun.xml.wss.provider.wsit.SOAPAuthParam
- All Implemented Interfaces:
AuthParam
SOAP authentication parameter.
An instance of SOAPAuthParam may be created with a null response object
(for example during a call to
ServerAuthContext.validateRequest).
If so, a response object may be created as necessary (by modules),
and set into the SOAPAuthParam via the setResponse method.
An instance of SOAPAuthParam may also be created with a null
request object (for example during a call to
ServerAuthContext.secureResponse).
- Version:
- 1.12, 06/08/04
-
Constructor Summary
ConstructorsConstructorDescriptionSOAPAuthParam(SOAPMessage request, SOAPMessage response) Create a SOAPAuthParam.SOAPAuthParam(Object request, Object response, int dummy) Create a SOAPAuthParam (using Packets) -
Method Summary
Modifier and TypeMethodDescriptiongetMap()Get the SOAP request object.Get the SOAP request object.Return the request Packet.Get the SOAP response object.Return the response Packet.static voidvoidsetRequest(SOAPMessage request) Set the SOAP request object.voidSet the request Packet.voidsetResponse(SOAPMessage response) Set the SOAP response object.voidSet the response Packet.
-
Constructor Details
-
SOAPAuthParam
Create a SOAPAuthParam.- Parameters:
request- the SOAP request object, which may be null.response- the SOAP response object, which may be null.
-
SOAPAuthParam
Create a SOAPAuthParam (using Packets)- Parameters:
request- the request Packet, which may be null.response- the response Packet, which may be null.dummy- int serves only to disambiguate constructors
-
-
Method Details
-
getMap
Get the SOAP request object.- Returns:
- the SOAP request object, which may be null.
-
getRequest
Get the SOAP request object.- Returns:
- the SOAP request object, which may be null.
-
getResponse
Get the SOAP response object.- Returns:
- the SOAP response object, which may be null.
-
setRequest
Set the SOAP request object.- Parameters:
request- the SOAP response object.
-
setResponse
Set the SOAP response object.- Parameters:
response- the SOAP response object.
-
getRequestPacket
Return the request Packet.- Returns:
- the request Packet, which may be null.
-
getResponsePacket
Return the response Packet.- Returns:
- the response Packet, which may be null.
-
setRequestPacket
Set the request Packet.has the side effect of resetting the SOAP request message.
- Parameters:
p- the request Packet
-
setResponsePacket
Set the response Packet.has the side effect of resetting the SOAP response message.
- Parameters:
p- the response Packet
-
printSOAP
-