Example usage for Java javax.xml.soap SOAPHeader fields, constructors, methods, implement or subclass
The text is from its open source code.
SOAPElement | addChildElement(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. |
SOAPElement | addChildElement(Name name) Creates a new SOAPElement object initialized with the given Name object and adds the new element to this SOAPElement object. |
SOAPElement | addChildElement(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. |
SOAPHeaderElement | addHeaderElement(Name name) Creates a new SOAPHeaderElement object initialized with the specified name and adds it to this SOAPHeader object. |
SOAPHeaderElement | addHeaderElement(QName qname) Creates a new SOAPHeaderElement object initialized with the specified qname and adds it to this SOAPHeader object. |
SOAPElement | addNamespaceDeclaration(String prefix, String uri) Adds a namespace declaration with the specified prefix and URI to this SOAPElement object. |
Node | appendChild(Node newChild) Adds the node newChild to the end of the list of children of this node. |
QName | createQName(String localName, String prefix) Creates a QName whose namespace URI is the one associated with the parameter, prefix , in the context of this SOAPElement . |
void | detachNode() Removes this Node object from the tree. |
Iterator | examineAllHeaderElements() Returns an Iterator over all the SOAPHeaderElement objects in this SOAPHeader object. |
Iterator | examineHeaderElements(String actor) Returns an Iterator over all the SOAPHeaderElement objects in this SOAPHeader object that have the specified actor. |
Iterator | extractAllHeaderElements() Returns an Iterator over all the SOAPHeaderElement objects in this SOAPHeader object and detaches them from this SOAPHeader object. |
Iterator | getChildElements() Returns an Iterator over all the immediate child Node s of this element. |
Iterator | getChildElements(Name name) Returns an Iterator over all the immediate child Node s of this element with the specified name. |
NodeList | getChildNodes() A NodeList that contains all children of this node. |
NodeList | getElementsByTagNameNS(String namespaceURI, String localName) Returns a NodeList of all the descendant Elements with a given local name and namespace URI in document order. |
String | getPrefix() The namespace prefix of this node, or null if it is unspecified. |
Node | removeChild(Node oldChild) Removes the child node indicated by oldChild from the list of children, and returns it. |
void | setPrefix(String prefix) The namespace prefix of this node, or null if it is unspecified. |