-
- All Known Subinterfaces:
- LogicalMessageContext, SOAPMessageContext
public interface MessageContext extends Map<String,Object>
The interfaceMessageContext
abstracts the message context that is processed by a handler in thehandle
method.The
MessageContext
interface provides methods to manage a property set.MessageContext
properties enable handlers in a handler chain to share processing related state.- Since:
- JAX-WS 2.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface and Description static class
MessageContext.Scope
Property scope.
-
Field Summary
Fields Modifier and Type Field and Description static String
HTTP_REQUEST_HEADERS
Standard property: HTTP request headers.static String
HTTP_REQUEST_METHOD
Standard property: HTTP request method.static String
HTTP_RESPONSE_CODE
Standard property: HTTP response status code.static String
HTTP_RESPONSE_HEADERS
Standard property: HTTP response headers.static String
INBOUND_MESSAGE_ATTACHMENTS
Standard property: Map of attachments to a message for the inbound message, key is the MIME Content-ID, value is a DataHandler.static String
MESSAGE_OUTBOUND_PROPERTY
Standard property: message direction,true
for outbound messages,false
for inbound.static String
OUTBOUND_MESSAGE_ATTACHMENTS
Standard property: Map of attachments to a message for the outbound message, key is the MIME Content-ID, value is a DataHandler.static String
PATH_INFO
Standard property: Request Path Infostatic String
QUERY_STRING
Standard property: Query string for request.static String
REFERENCE_PARAMETERS
Standard property: WS Addressing Reference Parameters.static String
SERVLET_CONTEXT
Standard property: servlet context object.static String
SERVLET_REQUEST
Standard property: servlet request object.static String
SERVLET_RESPONSE
Standard property: servlet response object.static String
WSDL_DESCRIPTION
Standard property: input source for WSDL document.static String
WSDL_INTERFACE
Standard property: name of wsdl interface (2.0) or port type (1.1).static String
WSDL_OPERATION
Standard property: name of WSDL operation.static String
WSDL_PORT
Standard property: name of WSDL port.static String
WSDL_SERVICE
Standard property: name of WSDL service.
-
Method Summary
Methods Modifier and Type Method and Description MessageContext.Scope
getScope(String name)
Gets the scope of a property.void
setScope(String name, MessageContext.Scope scope)
Sets the scope of a property.
-
-
-
Field Detail
-
MESSAGE_OUTBOUND_PROPERTY
static final String MESSAGE_OUTBOUND_PROPERTY
Standard property: message direction,true
for outbound messages,false
for inbound.Type: boolean
- See Also:
- Constant Field Values
-
INBOUND_MESSAGE_ATTACHMENTS
static final String INBOUND_MESSAGE_ATTACHMENTS
Standard property: Map of attachments to a message for the inbound message, key is the MIME Content-ID, value is a DataHandler.Type: java.util.Map<String,DataHandler>
- See Also:
- Constant Field Values
-
OUTBOUND_MESSAGE_ATTACHMENTS
static final String OUTBOUND_MESSAGE_ATTACHMENTS
Standard property: Map of attachments to a message for the outbound message, key is the MIME Content-ID, value is a DataHandler.Type: java.util.Map<String,DataHandler>
- See Also:
- Constant Field Values
-
WSDL_DESCRIPTION
static final String WSDL_DESCRIPTION
Standard property: input source for WSDL document.Type: org.xml.sax.InputSource
- See Also:
- Constant Field Values
-
WSDL_SERVICE
static final String WSDL_SERVICE
Standard property: name of WSDL service.Type: javax.xml.namespace.QName
- See Also:
- Constant Field Values
-
WSDL_PORT
static final String WSDL_PORT
Standard property: name of WSDL port.Type: javax.xml.namespace.QName
- See Also:
- Constant Field Values
-
WSDL_INTERFACE
static final String WSDL_INTERFACE
Standard property: name of wsdl interface (2.0) or port type (1.1).Type: javax.xml.namespace.QName
- See Also:
- Constant Field Values
-
WSDL_OPERATION
static final String WSDL_OPERATION
Standard property: name of WSDL operation.Type: javax.xml.namespace.QName
- See Also:
- Constant Field Values
-
HTTP_RESPONSE_CODE
static final String HTTP_RESPONSE_CODE
Standard property: HTTP response status code.Type: java.lang.Integer
- See Also:
- Constant Field Values
-
HTTP_REQUEST_HEADERS
static final String HTTP_REQUEST_HEADERS
Standard property: HTTP request headers.Type: java.util.Map<java.lang.String, java.util.List<java.lang.String>>
- See Also:
- Constant Field Values
-
HTTP_RESPONSE_HEADERS
static final String HTTP_RESPONSE_HEADERS
Standard property: HTTP response headers.Type: java.util.Map<java.lang.String, java.util.List<java.lang.String>>
- See Also:
- Constant Field Values
-
HTTP_REQUEST_METHOD
static final String HTTP_REQUEST_METHOD
Standard property: HTTP request method.Type: java.lang.String
- See Also:
- Constant Field Values
-
SERVLET_REQUEST
static final String SERVLET_REQUEST
Standard property: servlet request object.Type: javax.servlet.http.HttpServletRequest
- See Also:
- Constant Field Values
-
SERVLET_RESPONSE
static final String SERVLET_RESPONSE
Standard property: servlet response object.Type: javax.servlet.http.HttpServletResponse
- See Also:
- Constant Field Values
-
SERVLET_CONTEXT
static final String SERVLET_CONTEXT
Standard property: servlet context object.Type: javax.servlet.ServletContext
- See Also:
- Constant Field Values
-
QUERY_STRING
static final String QUERY_STRING
Standard property: Query string for request.Type: String
- See Also:
- Constant Field Values
-
PATH_INFO
static final String PATH_INFO
Standard property: Request Path InfoType: String
- See Also:
- Constant Field Values
-
REFERENCE_PARAMETERS
static final String REFERENCE_PARAMETERS
Standard property: WS Addressing Reference Parameters. The list MUST include all SOAP headers marked with the wsa:IsReferenceParameter="true" attribute.Type: List<Element>
- Since:
- JAX-WS 2.1
- See Also:
- Constant Field Values
-
-
Method Detail
-
setScope
void setScope(String name, MessageContext.Scope scope)
Sets the scope of a property.- Parameters:
name
- Name of the property associated with theMessageContext
scope
- Desired scope of the property- Throws:
IllegalArgumentException
- if an illegal property name is specified
-
getScope
MessageContext.Scope getScope(String name)
Gets the scope of a property.- Parameters:
name
- Name of the property- Returns:
- Scope of the property
- Throws:
IllegalArgumentException
- if a non-existant property name is specified
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/xml/ws/handler/MessageContext.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.