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

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

SOAPElementaddAttribute(Name name, String value)
Adds an attribute with the specified name and value to this SOAPElement object.
SOAPBodyaddBody()
Creates a SOAPBody object and sets it as the SOAPBody object for this SOAPEnvelope object.
SOAPHeaderaddHeader()
Creates a SOAPHeader object and sets it as the SOAPHeader object for this SOAPEnvelope object.
SOAPElementaddNamespaceDeclaration(String prefix, String uri)
Adds a namespace declaration with the specified prefix and URI to this SOAPElement object.
NamecreateName(String localName, String prefix, String uri)
Creates a new Name object initialized with the given local name, namespace prefix, and namespace URI.
NamecreateName(String localName)
Creates a new Name object initialized with the given local name.
StringgetAttribute(String name)
Retrieves an attribute value by name.
SOAPBodygetBody()
Returns the SOAPBody object associated with this SOAPEnvelope object.
NodegetFirstChild()
The first child of this node.
SOAPHeadergetHeader()
Returns the SOAPHeader object for this SOAPEnvelope object.
IteratorgetNamespacePrefixes()
Returns an Iterator over the namespace prefix String s declared by this element.
StringgetNamespaceURI(String prefix)
Returns the URI of the namespace that has the given prefix.
StringgetNamespaceURI()
The namespace URI of this node, or null if it is unspecified (see ).
DocumentgetOwnerDocument()
The Document object associated with this node.
NoderemoveChild(Node oldChild)
Removes the child node indicated by oldChild from the list of children, and returns it.
booleanremoveNamespaceDeclaration(String prefix)
Removes the namespace declaration corresponding to the given prefix.
voidsetEncodingStyle(String encodingStyle)
Sets the encoding style for this SOAPElement object to one specified.
voidsetPrefix(String prefix)
The namespace prefix of this node, or null if it is unspecified.
StringtoString()
Returns a string representation of the object.