Uses of Interface
jakarta.xml.soap.SOAPElement
Packages that use SOAPElement
-
Uses of SOAPElement in jakarta.xml.soap
Subinterfaces of SOAPElement in jakarta.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 jakarta.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.addAttribute
(QName qname, String value) Adds an attribute with the specified name and value 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.addChildElement
(String localName) Creates a newSOAPElement
object initialized with the specified local name 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
(QName qname) Creates a newSOAPElement
object initialized with the givenQName
object and adds the new element to thisSOAPElement
object.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.abstract SOAPElement
SOAPFactory.createElement
(Name name) Creates aSOAPElement
object initialized with the givenName
object.abstract SOAPElement
SOAPFactory.createElement
(String localName) Creates aSOAPElement
object initialized with the given local name.abstract SOAPElement
SOAPFactory.createElement
(String localName, String prefix, String uri) Creates a newSOAPElement
object with the given local name, prefix and uri.SOAPFactory.createElement
(QName qname) Creates aSOAPElement
object initialized with the givenQName
object.SOAPFactory.createElement
(Element domElement) Creates aSOAPElement
object from an existing DOMElement
.Node.getParentElement()
Returns the parent element of thisNode
object.SOAPElement.setElementQName
(QName newName) Changes the name of thisElement
tonewName
if possible.Methods in jakarta.xml.soap with parameters of type SOAPElementModifier and TypeMethodDescriptionSOAPElement.addChildElement
(SOAPElement element) Add aSOAPElement
as a child of thisSOAPElement
instance.abstract AttachmentPart
SOAPMessage.getAttachment
(SOAPElement element) Returns anAttachmentPart
object that is associated with an attachment that is referenced by thisSOAPElement
ornull
if no such attachment exists.void
Node.setParentElement
(SOAPElement parent) Sets the parent of thisNode
object to the givenSOAPElement
object.Constructors in jakarta.xml.soap with parameters of type SOAPElementModifierConstructorDescriptionSAAJResult
(SOAPElement rootNode) Creates aSAAJResult
that will write the results as a child node of theSOAPElement
specified.