Java javax.xml.soap SOAPHeader fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.soap SOAPHeader fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.soap SOAPHeader.

The text is from its open source code.

Implementation

javax.xml.soap.SOAPHeader has the following implementations.
Click this link to see all its implementation.

Method

SOAPElementaddChildElement(String localName, String prefix, String uri)
Creates a new SOAPElement object initialized with the specified local name, prefix, and URI and adds the new element to this SOAPElement object.
SOAPElementaddChildElement(Name name)
Creates a new SOAPElement object initialized with the given Name object and adds the new element to this SOAPElement object.
SOAPElementaddChildElement(String localName, String prefix)
Creates a new SOAPElement object initialized with the specified local name and prefix and adds the new element to this SOAPElement object.
SOAPHeaderElementaddHeaderElement(Name name)
Creates a new SOAPHeaderElement object initialized with the specified name and adds it to this SOAPHeader object.
SOAPHeaderElementaddHeaderElement(QName qname)
Creates a new SOAPHeaderElement object initialized with the specified qname and adds it to this SOAPHeader object.
SOAPElementaddNamespaceDeclaration(String prefix, String uri)
Adds a namespace declaration with the specified prefix and URI to this SOAPElement object.
NodeappendChild(Node newChild)
Adds the node newChild to the end of the list of children of this node.
QNamecreateQName(String localName, String prefix)
Creates a QName whose namespace URI is the one associated with the parameter, prefix , in the context of this SOAPElement .
voiddetachNode()
Removes this Node object from the tree.
IteratorexamineAllHeaderElements()
Returns an Iterator over all the SOAPHeaderElement objects in this SOAPHeader object.
IteratorexamineHeaderElements(String actor)
Returns an Iterator over all the SOAPHeaderElement objects in this SOAPHeader object that have the specified actor.
IteratorextractAllHeaderElements()
Returns an Iterator over all the SOAPHeaderElement objects in this SOAPHeader object and detaches them from this SOAPHeader object.
IteratorgetChildElements()
Returns an Iterator over all the immediate child Node s of this element.
IteratorgetChildElements(Name name)
Returns an Iterator over all the immediate child Node s of this element with the specified name.
NodeListgetChildNodes()
A NodeList that contains all children of this node.
NodeListgetElementsByTagNameNS(String namespaceURI, String localName)
Returns a NodeList of all the descendant Elements with a given local name and namespace URI in document order.
StringgetPrefix()
The namespace prefix of this node, or null if it is unspecified.
NoderemoveChild(Node oldChild)
Removes the child node indicated by oldChild from the list of children, and returns it.
voidsetPrefix(String prefix)
The namespace prefix of this node, or null if it is unspecified.