public static class PicketLinkDispatch.PLMessageContext extends Object implements MessageContext, SOAPMessageContext
MessageContext.Scope
HTTP_REQUEST_HEADERS, HTTP_REQUEST_METHOD, HTTP_RESPONSE_CODE, HTTP_RESPONSE_HEADERS, INBOUND_MESSAGE_ATTACHMENTS, MESSAGE_OUTBOUND_PROPERTY, OUTBOUND_MESSAGE_ATTACHMENTS, PATH_INFO, QUERY_STRING, REFERENCE_PARAMETERS, SERVLET_CONTEXT, SERVLET_REQUEST, SERVLET_RESPONSE, WSDL_DESCRIPTION, WSDL_INTERFACE, WSDL_OPERATION, WSDL_PORT, WSDL_SERVICE
Constructor and Description |
---|
PLMessageContext() |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsProperty(String name) |
boolean |
containsValue(Object value) |
Set<Map.Entry<String,Object>> |
entrySet() |
Object |
get(Object key) |
Object[] |
getHeaders(QName header,
JAXBContext context,
boolean allRoles)
Gets headers that have a particular qualified name from the message in the
message context.
|
SOAPMessage |
getMessage()
Gets the
SOAPMessage |
Object |
getProperty(String name) |
Iterator |
getPropertyNames() |
Set<String> |
getRoles()
Gets the SOAP actor roles associated with an execution
of the handler chain.
|
MessageContext.Scope |
getScope(String name)
Gets the scope of a property.
|
boolean |
isEmpty() |
Set<String> |
keySet() |
Object |
put(String key,
Object value) |
void |
putAll(Map<? extends String,? extends Object> m) |
Object |
remove(Object key) |
void |
removeProperty(String name) |
void |
setMessage(SOAPMessage message)
Sets the SOAPMessage in this message context
|
void |
setProperty(String name,
Object value) |
void |
setScope(String name,
MessageContext.Scope scope)
Sets the scope of a property.
|
int |
size() |
Collection<Object> |
values() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
public boolean containsKey(Object key)
containsKey
in interface Map<String,Object>
public boolean containsValue(Object value)
containsValue
in interface Map<String,Object>
public void setScope(String name, MessageContext.Scope scope)
MessageContext
setScope
in interface MessageContext
name
- Name of the property associated with the
MessageContext
scope
- Desired scope of the propertypublic MessageContext.Scope getScope(String name)
MessageContext
getScope
in interface MessageContext
name
- Name of the propertypublic boolean containsProperty(String name)
public Iterator getPropertyNames()
public void removeProperty(String name)
public SOAPMessage getMessage()
SOAPMessageContext
SOAPMessage from this message context. Modifications
to the returned SOAPMessage
change the message in-place, there
is no need to susequently call setMessage
.
getMessage
in interface SOAPMessageContext
SOAPMessage
; returns null
if no
SOAPMessage
is present in this message contextpublic void setMessage(SOAPMessage message)
SOAPMessageContext
setMessage
in interface SOAPMessageContext
message
- SOAP messagepublic Object[] getHeaders(QName header, JAXBContext context, boolean allRoles)
SOAPMessageContext
getHeaders
in interface SOAPMessageContext
header
- The XML qualified name of the SOAP header(s).context
- The JAXBContext that should be used to unmarshall the
headerallRoles
- If true
then returns headers for all SOAP
roles, if false
then only returns headers targetted
at the roles currently being played by this SOAP node, see
getRoles
.public Set<String> getRoles()
SOAPMessageContext
SOAPBinding.setRoles(java.util.Set<java.lang.String>)
and
SOAPBinding.getRoles()
. Handler
instances in
the handler chain use this information about the SOAP actor
roles to process the SOAP header blocks. Note that the
SOAP actor roles are invariant during the processing of
SOAP message through the handler chain.getRoles
in interface SOAPMessageContext
String
for SOAP actor rolesCopyright © 2017 JBoss by Red Hat. All rights reserved.