Contains both the message request as well as the response. Response message are usually lazily created (but do not
have to be).
author: Arjen Poutsma since: 1.0.0
Method Summary
boolean
containsProperty(String name) Check if this message context contains a property with the given name.
Check if this message context contains a property with the given name.
Parameters: name - the name of the property to look for true if the MessageContext contains the property; false otherwise
Gets the value of a specific property from the MessageContext.
Parameters: name - name of the property whose value is to be retrieved value of the property
Reads a response message from the given input stream.
Parameters: inputStream - the stream to read the response from throws: IOException - in case of I/O errors throws: IllegalStateException - if a response has already been created
Sets the name and value of a property associated with the MessageContext. If the
MessageContext contains a value of the same property, the old value is replaced.
Parameters: name - name of the property associated with the value Parameters: value - value of the property