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

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

Introduction

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

The text is from its open source code.

Method

SOAPElementaddAttribute(Name name, String value)
Adds an attribute with the specified name and value 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.
SOAPElementaddNamespaceDeclaration(String prefix, String uri)
Adds a namespace declaration with the specified prefix and URI to this SOAPElement object.
SOAPElementaddTextNode(String text)
Creates a new Text object initialized with the given String and adds it to this SOAPElement object.
StringgetActor()
Returns the uri of the actor attribute of this SOAPHeaderElement .
IteratorgetChildElements()
Returns an Iterator over all the immediate child Node s of this element.
NamegetElementName()
Returns the name of this SOAPElement object.
QNamegetElementQName()
Returns the qname of this SOAPElement object.
NodeListgetElementsByTagNameNS(String namespaceURI, String localName)
Returns a NodeList of all the descendant Elements with a given local name and namespace URI in document order.
StringgetLocalName()
Returns the local part of the qualified name of this node.
booleangetMustUnderstand()
Returns the boolean value of the mustUnderstand attribute for this SOAPHeaderElement .
StringgetNamespaceURI()
The namespace URI of this node, or null if it is unspecified (see ).
StringgetNodeName()
The name of this node, depending on its type; see the table above.
StringgetTextContent()
This attribute returns the text content of this node and its descendants.
StringgetValue()
Returns the value of this node if this is a Text node or the value of the immediate child of this node otherwise.
voidsetActor(String actorURI)
Sets the actor associated with this SOAPHeaderElement object to the specified actor.
voidsetIdAttributeNS(String namespaceURI, String localName, boolean isId)
If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
voidsetMustUnderstand(boolean mustUnderstand)
Sets the mustUnderstand attribute for this SOAPHeaderElement object to be either true or false.
voidsetPrefix(String prefix)
The namespace prefix of this node, or null if it is unspecified.
voidsetTextContent(String textContent)
This attribute returns the text content of this node and its descendants.