| java.lang.Object com.sun.jbi.internal.security.test.binding1.rt.ContextImpl com.sun.jbi.internal.security.test.binding1.rt.SOAPMessageContext
SOAPMessageContext | public class SOAPMessageContext extends ContextImpl implements MessageContext(Code) | | Implementation of the MessageContext interface ( mostly domain of SOAP binding ).
This is the runtime context passed to the interceptor at execution time and may vary
depending on how generic we want to make it.
author: Sun Microsystems, Inc. |
SOAPMessageContext | public SOAPMessageContext(SOAPMessage msg)(Code) | | Creates a new instance of SampleSoapMessageContext.
Parameters: msg - is the SOAPMessage |
getMessage | public Object getMessage()(Code) | | Get the SOAP Message associated with this Context.
the SOAP Message in the Context |
getResponseMessage | public Object getResponseMessage()(Code) | | Get the ResponseMessage, a response message is present in the Context only when
validation of an incoming request message, results in a response message to
be sent to the sender of the request
the Response Message in the Context |
setMessage | public void setMessage(Object msg)(Code) | | Set the SOAP Message associated with this Context.
Parameters: msg - is the SOAP Message in the Context |
setResponseMessage | public void setResponseMessage(Object respMsg)(Code) | | Set the ResponseMessage, a response message is present in the Context only when
validation of an incoming request message, results in a respponse message to
be sent to the sender of the request
Parameters: respMsg - is the Error Message in the Context |
|
|