Uses of Interface
org.apache.axiom.soap.SOAPHeaderBlock
-
Packages that use SOAPHeaderBlock Package Description org.apache.axiom.soap -
-
Uses of SOAPHeaderBlock in org.apache.axiom.soap
Methods in org.apache.axiom.soap that return SOAPHeaderBlock Modifier and Type Method Description SOAPHeaderBlock
SOAPHeader. addHeaderBlock(String localName, OMNamespace ns)
Creates a newSOAPHeaderBlock
object initialized with the specified name and adds it to thisSOAPHeader
object.SOAPHeaderBlock
SOAPHeader. addHeaderBlock(QName qname)
Creates a newSOAPHeaderBlock
object initialized with the specified name and adds it to thisSOAPHeader
object.SOAPHeaderBlock
SOAPFactory. createSOAPHeaderBlock(String localName, OMNamespace ns)
SOAPHeaderBlock
SOAPFactory. createSOAPHeaderBlock(String localName, OMNamespace ns, OMDataSource source)
Create aSOAPHeaderBlock
from anOMDataSource
with a known local name and namespace URI.SOAPHeaderBlock
SOAPFactory. createSOAPHeaderBlock(String localName, OMNamespace ns, SOAPHeader parent)
SOAPHeaderBlock
SOAPFactory. createSOAPHeaderBlock(OMDataSource source)
Create aSOAPHeaderBlock
from anOMDataSource
.SOAPHeaderBlock
SOAPFactory. createSOAPHeaderBlock(OMElement element)
Create a newSOAPHeaderBlock
with the same content as the given element.Methods in org.apache.axiom.soap that return types with arguments of type SOAPHeaderBlock Modifier and Type Method Description Iterator<SOAPHeaderBlock>
SOAPHeader. examineAllHeaderBlocks()
Returns an iterator over all theSOAPHeaderBlock
objects in thisSOAPHeader
object.Iterator<SOAPHeaderBlock>
SOAPHeader. examineHeaderBlocks(String role)
Returns a list of all theSOAPHeaderBlock
objects in thisSOAPHeader
object that have the the specified role.Iterator<SOAPHeaderBlock>
SOAPHeader. examineMustUnderstandHeaderBlocks(String role)
Returns an iterator over all theSOAPHeaderBlock
objects in thisSOAPHeader
object that have the specified role and that have aMustUnderstand
attribute whose value is equivalent totrue
.Iterator<SOAPHeaderBlock>
SOAPHeader. extractAllHeaderBlocks()
Returns an iterator over all theSOAPHeaderBlock
objects in thisSOAPHeader
object and detaches them from thisSOAPHeader
object.Iterator<SOAPHeaderBlock>
SOAPHeader. extractHeaderBlocks(String role)
Returns a list of all theSOAPHeaderBlock
objects in thisSOAPHeader
object that have the the specified role and detaches them from thisSOAPHeader
object.Iterator<SOAPHeaderBlock>
SOAPHeader. getHeaderBlocksWithName(QName name)
Get all header blocks with the given name.Iterator<SOAPHeaderBlock>
SOAPHeader. getHeaderBlocksWithNamespaceURI(String uri)
Get all header blocks in the given namespace.ArrayList<SOAPHeaderBlock>
SOAPHeader. getHeaderBlocksWithNSURI(String nsURI)
Deprecated.UseSOAPHeader.getHeaderBlocksWithNamespaceURI(String)
instead.Iterator<SOAPHeaderBlock>
SOAPHeader. getHeadersToProcess(RolePlayer rolePlayer)
Get the appropriate set of headers for aRolePlayer
.Iterator<SOAPHeaderBlock>
SOAPHeader. getHeadersToProcess(RolePlayer rolePlayer, String namespace)
Get the appropriate set of headers for a RolePlayer and a particular namespace.
-