Uses of Interface
javax.xml.soap.SOAPElement
Packages that use SOAPElement
-
Uses of SOAPElement in javax.xml.soap
Subinterfaces of SOAPElement in javax.xml.soapModifier and TypeInterfaceDescriptioninterface
A container forDetailEntry
objects.interface
The content for aDetail
object, giving details for aSOAPFault
object.interface
An object that represents the contents of the SOAP body element in a SOAP message.interface
ASOAPBodyElement
object represents the contents in aSOAPBody
object.interface
The container for the SOAPHeader and SOAPBody portions of aSOAPPart
object.interface
An element in theSOAPBody
object that contains error and/or status information.interface
A representation of the contents in aSOAPFault
object.interface
A representation of the SOAP header element.interface
An object representing the contents in the SOAP header part of the SOAP envelope.Methods in javax.xml.soap that return SOAPElementModifier and TypeMethodDescriptionSOAPElement.addAttribute
(Name name, String value) Adds an attribute with the specified name and value to thisSOAPElement
object.SOAPElement.addChildElement
(String localName) Creates a newSOAPElement
object initialized with the givenString
object and adds the new element to thisSOAPElement
object.SOAPElement.addChildElement
(String localName, String prefix) Creates a newSOAPElement
object initialized with the specified local name and prefix and adds the new element to thisSOAPElement
object.SOAPElement.addChildElement
(String localName, String prefix, String uri) Creates a newSOAPElement
object initialized with the specified local name, prefix, and URI and adds the new element to thisSOAPElement
object.SOAPElement.addChildElement
(Name name) Creates a newSOAPElement
object initialized with the givenName
object and adds the new element to thisSOAPElement
object.SOAPElement.addChildElement
(SOAPElement element) Add aSOAPElement
as a child of thisSOAPElement
instance.SOAPElement.addNamespaceDeclaration
(String prefix, String uri) Adds a namespace declaration with the specified prefix and URI to thisSOAPElement
object.SOAPElement.addTextNode
(String text) Creates a newText
object initialized with the givenString
and adds it to thisSOAPElement
object.Deprecated.Use javax.xml.soap.SOAPFactory.createElement(String localName) insteadDeprecated.Use javax.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) insteadDeprecated.Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) insteadabstract SOAPElement
SOAPFactory.createElement
(String localName) Create aSOAPElement
object initialized with the given local name.abstract SOAPElement
SOAPFactory.createElement
(String localName, String prefix, String uri) Create a newSOAPElement
object with the given local name, prefix and uri.abstract SOAPElement
SOAPFactory.createElement
(Name name) Create aSOAPElement
object initialized with the givenName
object.Node.getParentElement()
Returns the parent element of thisNode
object.Methods in javax.xml.soap with parameters of type SOAPElementModifier and TypeMethodDescriptionSOAPElement.addChildElement
(SOAPElement element) Add aSOAPElement
as a child of thisSOAPElement
instance.void
Node.setParentElement
(SOAPElement parent) Sets the parent of thisNode
object to the givenSOAPElement
object. -
Uses of SOAPElement in org.apache.axis.message
Classes in org.apache.axis.message that implement SOAPElementModifier and TypeClassDescriptionclass
Detail Container implementationclass
Detail Entry implementationclass
class
MessageElement is the base type of nodes of the SOAP message parse tree.class
class
class
An RPC parameterclass
Holder for body elements.class
A Body element.class
Implementation of a SOAP Envelopeclass
A Fault body element.class
SOAP Fault implementationclass
Holder for header elements.class
A simple header element abstraction.Methods in org.apache.axis.message that return SOAPElementModifier and TypeMethodDescriptionMessageElement.addAttribute
(Name attrName, String value) add a new attributeMessageElement.addChildElement
(String localName) add a child element in the message element's own namespaceMessageElement.addChildElement
(String localName, String prefixName) add a child elementMessageElement.addChildElement
(String localName, String childPrefix, String uri) add a child elementMessageElement.addChildElement
(Name childName) add the child elementMessageElement.addChildElement
(SOAPElement element) The added child must be an instance of MessageElement rather than an abitrary SOAPElement otherwise a (wrapped) ClassCastException will be thrown.SOAPBody.addChildElement
(String localName) SOAPBody.addChildElement
(String localName, String prefix) SOAPBody.addChildElement
(String localName, String prefix, String uri) SOAPBody.addChildElement
(Name name) SOAPBody.addChildElement
(SOAPElement element) SOAPHeader.addChildElement
(String localName) SOAPHeader.addChildElement
(String localName, String prefix) SOAPHeader.addChildElement
(String localName, String prefix, String uri) SOAPHeader.addChildElement
(Name name) SOAPHeader.addChildElement
(SOAPElement element) MessageElement.addNamespaceDeclaration
(String prefix, String uri) create aMapping
mapping and add to our namespace list.MessageElement.addTextNode
(String s) add a text node to the document.RPCParam.addTextNode
(String s) NodeImpl.getParentElement()
Returns the parent element of thisNode
object.Methods in org.apache.axis.message with parameters of type SOAPElementModifier and TypeMethodDescriptionMessageElement.addChildElement
(SOAPElement element) The added child must be an instance of MessageElement rather than an abitrary SOAPElement otherwise a (wrapped) ClassCastException will be thrown.SOAPBody.addChildElement
(SOAPElement element) SOAPHeader.addChildElement
(SOAPElement element) void
NodeImpl.setParentElement
(SOAPElement parent) Sets the parent of thisNode
object to the givenSOAPElement
object.void
SOAPBody.setParentElement
(SOAPElement parent) void
SOAPBodyElement.setParentElement
(SOAPElement parent) void
SOAPHeader.setParentElement
(SOAPElement parent) void
SOAPHeaderElement.setParentElement
(SOAPElement parent) -
Uses of SOAPElement in org.apache.axis.soap
Methods in org.apache.axis.soap that return SOAPElementModifier and TypeMethodDescriptionSOAPFactoryImpl.createElement
(String localName) Create aSOAPElement
object initialized with the given local name.SOAPFactoryImpl.createElement
(String localName, String prefix, String uri) Create a newSOAPElement
object with the given local name, prefix and uri.SOAPFactoryImpl.createElement
(Name name) Create aSOAPElement
object initialized with the givenName
object.