Uses of Interface
jakarta.xml.soap.SOAPHeaderElement
-
-
Uses of SOAPHeaderElement in jakarta.xml.soap
Methods in jakarta.xml.soap that return SOAPHeaderElement Modifier and Type Method Description SOAPHeaderElement
SOAPHeader. addHeaderElement(Name name)
Creates a newSOAPHeaderElement
object initialized with the specified name and adds it to thisSOAPHeader
object.SOAPHeaderElement
SOAPHeader. addHeaderElement(QName qname)
Creates a newSOAPHeaderElement
object initialized with the specified qname and adds it to thisSOAPHeader
object.SOAPHeaderElement
SOAPHeader. addNotUnderstoodHeaderElement(QName name)
Creates a new NotUnderstoodSOAPHeaderElement
object initialized with the specified name and adds it to thisSOAPHeader
object.SOAPHeaderElement
SOAPHeader. addUpgradeHeaderElement(String supportedSoapUri)
Creates a new UpgradeSOAPHeaderElement
object initialized with the specified supported SOAP URI and adds it to thisSOAPHeader
object.SOAPHeaderElement
SOAPHeader. addUpgradeHeaderElement(String[] supportedSoapUris)
Creates a new UpgradeSOAPHeaderElement
object initialized with the specified array of supported SOAP URIs and adds it to thisSOAPHeader
object.SOAPHeaderElement
SOAPHeader. addUpgradeHeaderElement(Iterator<String> supportedSOAPURIs)
Creates a new UpgradeSOAPHeaderElement
object initialized with the specified List of supported SOAP URIs and adds it to thisSOAPHeader
object.Methods in jakarta.xml.soap that return types with arguments of type SOAPHeaderElement Modifier and Type Method Description Iterator<SOAPHeaderElement>
SOAPHeader. examineAllHeaderElements()
Returns anIterator
over all theSOAPHeaderElement
objects in thisSOAPHeader
object.Iterator<SOAPHeaderElement>
SOAPHeader. examineHeaderElements(String actor)
Returns anIterator
over all theSOAPHeaderElement
objects in thisSOAPHeader
object that have the specified actor.Iterator<SOAPHeaderElement>
SOAPHeader. examineMustUnderstandHeaderElements(String actor)
Returns anIterator
over all theSOAPHeaderElement
objects in thisSOAPHeader
object that have the specified actor and that have a MustUnderstand attribute whose value is equivalent totrue
.Iterator<SOAPHeaderElement>
SOAPHeader. extractAllHeaderElements()
Returns anIterator
over all theSOAPHeaderElement
objects in thisSOAPHeader
object and detaches them from thisSOAPHeader
object.Iterator<SOAPHeaderElement>
SOAPHeader. extractHeaderElements(String actor)
Returns anIterator
over all theSOAPHeaderElement
objects in thisSOAPHeader
object that have the specified actor and detaches them from thisSOAPHeader
object.
-