Package org.apache.axiom.soap
Interface SOAPHeaderBlock
- All Superinterfaces:
OMContainer
,OMElement
,OMInformationItem
,OMNamedInformationItem
,OMNode
,OMSerializable
,OMSourcedElement
An object representing the contents in the SOAP header part of the SOAP envelope. The
immediate children of a SOAPHeader
object can be represented only as
SOAPHeaderBlock
objects.
B SOAPHeaderBlock
object can have other
OMElement
objects as its children.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
static final String
static final String
A SOAPHeaderBlock may be represented as an unexpanded OMSourcedElement.Fields inherited from interface org.apache.axiom.om.OMNode
CDATA_SECTION_NODE, COMMENT_NODE, DTD_NODE, ELEMENT_NODE, ENTITY_REFERENCE_NODE, PI_NODE, SPACE_NODE, TEXT_NODE
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the boolean value of themustUnderstand
attribute for this header block.boolean
getRelay()
Returns the relay status associated with thisSOAPHeaderBlock
object.getRole()
Returns the uri of the actor associated with thisSOAPHeaderBlock
object.What SOAP version is this HeaderBlock?boolean
void
setMustUnderstand
(boolean mustUnderstand) Sets the mustUnderstand attribute for thisSOAPHeaderBlock
object to be on or off.void
We need to know whether all the mustUnderstand headers have been processed by the node.void
setRelay
(boolean relay) Sets the relay attribute for this SOAPHeaderBlock to be either true or false.void
Sets the actor associated with thisSOAPHeaderBlock
object to the specified actor.Methods inherited from interface org.apache.axiom.om.OMContainer
addChild, getBuilder, getChildren, getChildrenWithLocalName, getChildrenWithName, getChildrenWithNamespaceURI, getFirstChildWithName, getFirstOMChild, getSAXResult, getSAXSource, getXMLStreamReader, getXMLStreamReader, getXMLStreamReader, getXMLStreamReaderWithoutCaching, getXOPEncodedStreamReader, removeChildren, serialize, serialize, serialize, serialize, serialize, serialize, serialize, serialize, serializeAndConsume, serializeAndConsume, serializeAndConsume, serializeAndConsume
Methods inherited from interface org.apache.axiom.om.OMElement
addAttribute, addAttribute, cloneOMElement, declareDefaultNamespace, declareNamespace, declareNamespace, findNamespace, findNamespaceURI, getAllAttributes, getAllDeclaredNamespaces, getAttribute, getAttributeValue, getChildElements, getDefaultNamespace, getDescendants, getFirstElement, getLineNumber, getNamespaceContext, getNamespacesInScope, getText, getTextAsQName, getTextAsStream, removeAttribute, resolveQName, setLineNumber, setNamespace, setNamespaceWithNoFindInCurrentScope, setText, setText, toString, toStringWithConsume, undeclarePrefix, writeTextTo
Methods inherited from interface org.apache.axiom.om.OMInformationItem
clone, getOMFactory
Methods inherited from interface org.apache.axiom.om.OMNamedInformationItem
getLocalName, getNamespace, getNamespaceURI, getPrefix, getQName, hasName, setLocalName, setNamespace
Methods inherited from interface org.apache.axiom.om.OMNode
buildWithAttachments, detach, discard, getNextOMSibling, getParent, getPreviousOMSibling, getType, insertSiblingAfter, insertSiblingBefore
Methods inherited from interface org.apache.axiom.om.OMSerializable
build, close, isComplete, serialize, serialize, serializeAndConsume
Methods inherited from interface org.apache.axiom.om.OMSourcedElement
getDataSource, getObject, isExpanded, setDataSource
-
Field Details
-
ROLE_PROPERTY
A SOAPHeaderBlock may be represented as an unexpanded OMSourcedElement. In such cases, the underlying OMDataSource may have a property that contains the value of the ROLE/ACTOR, RELAY or MUST_UNDERSTAND setting.- See Also:
-
RELAY_PROPERTY
- See Also:
-
MUST_UNDERSTAND_PROPERTY
- See Also:
-
-
Method Details
-
setRole
Sets the actor associated with thisSOAPHeaderBlock
object to the specified actor.- Parameters:
roleURI
- aString
giving the URI of the actor to set- Throws:
IllegalArgumentException
- if there is a problem in setting the actor.- See Also:
-
getRole
String getRole()Returns the uri of the actor associated with thisSOAPHeaderBlock
object.- Returns:
- a
String
giving the URI of the actor - See Also:
-
setMustUnderstand
void setMustUnderstand(boolean mustUnderstand) Sets the mustUnderstand attribute for thisSOAPHeaderBlock
object to be on or off.If the mustUnderstand attribute is on, the actor who receives the
SOAPHeaderBlock
must process it correctly. This ensures, for example, that if theSOAPHeaderBlock
object modifies the message, that the message is being modified correctly.- Parameters:
mustUnderstand
-true
to set the mustUnderstand attribute on;false
to turn if off- Throws:
IllegalArgumentException
- if there is a problem in setting the actor.- See Also:
-
getMustUnderstand
Returns the boolean value of themustUnderstand
attribute for this header block.- Returns:
true
if amustUnderstand
attribute is present and its value is equivalent to true,false
if themustUnderstand
is not present or its value is equivalent to false- Throws:
SOAPProcessingException
- if themustUnderstand
attribute is present, but has an invalid value
-
isProcessed
boolean isProcessed() -
setProcessed
void setProcessed()We need to know whether all the mustUnderstand headers have been processed by the node. This will done by a specific validation handler at the end of the execution chain. For this all the handlers who process a particular header block must explicitly say that he processesd the header by calling setProcessed() -
setRelay
void setRelay(boolean relay) Sets the relay attribute for this SOAPHeaderBlock to be either true or false. The SOAP relay attribute is set to true to indicate that the SOAP header block must be relayed by any node that is targeted by the header block but not actually process it.- Parameters:
relay
- aboolean
giving the value to be set
-
getRelay
boolean getRelay()Returns the relay status associated with thisSOAPHeaderBlock
object.- Returns:
- a
boolean
giving the relay status
-
getVersion
SOAPVersion getVersion()What SOAP version is this HeaderBlock?- Returns:
- a SOAPVersion, one of the two singletons.
-