| com.sun.jbi.binding.security.MessageContext
All known Subclasses: com.sun.jbi.internal.security.test.binding1.rt.SOAPMessageContext,
MessageContext | public interface MessageContext extends Context(Code) | | The MessageContext interface provides a handle to the message.
author: Sun Microsystems, Inc. |
getMessage | Object getMessage()(Code) | | Get the SOAP Message associated with this Context.
the Message in the Context |
getResponseMessage | Object getResponseMessage()(Code) | | Get the ResponseMessage, a resonse 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
the Response Message in the Context |
setMessage | void setMessage(Object msg)(Code) | | Set the Message associated with this Context.
Parameters: msg - is the Message in the Context |
setResponseMessage | 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 |
|
|