Uses of Interface
javax.xml.soap.SOAPElement
-
Packages that use SOAPElement Package Description javax.xml.soap Provides the API for creating and building SOAP messages. -
-
Uses of SOAPElement in javax.xml.soap
Subinterfaces of SOAPElement in javax.xml.soap Modifier and Type Interface and Description interface
Detail
A container forDetailEntry
objects.interface
DetailEntry
The content for aDetail
object, giving details for aSOAPFault
object.interface
SOAPBody
An object that represents the contents of the SOAP body element in a SOAP message.interface
SOAPBodyElement
ASOAPBodyElement
object represents the contents in aSOAPBody
object.interface
SOAPEnvelope
The container for the SOAPHeader and SOAPBody portions of aSOAPPart
object.interface
SOAPFault
An element in theSOAPBody
object that contains error and/or status information.interface
SOAPFaultElement
A representation of the contents in aSOAPFault
object.interface
SOAPHeader
A representation of the SOAP header element.interface
SOAPHeaderElement
An object representing the contents in the SOAP header part of the SOAP envelope.Methods in javax.xml.soap that return SOAPElement Modifier and Type Method and Description SOAPElement
SOAPElement. addAttribute(Name name, String value)
Adds an attribute with the specified name and value to thisSOAPElement
object.SOAPElement
SOAPElement. addAttribute(QName qname, String value)
Adds an attribute with the specified name and value to thisSOAPElement
object.SOAPElement
SOAPElement. addChildElement(Name name)
Creates a newSOAPElement
object initialized with the givenName
object and adds the new element to thisSOAPElement
object.SOAPElement
SOAPElement. addChildElement(QName qname)
Creates a newSOAPElement
object initialized with the givenQName
object and adds the new element to thisSOAPElement
object.SOAPElement
SOAPElement. addChildElement(SOAPElement element)
Add aSOAPElement
as a child of thisSOAPElement
instance.SOAPElement
SOAPElement. addChildElement(String localName)
Creates a newSOAPElement
object initialized with the specified local name and adds the new element to thisSOAPElement
object.SOAPElement
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
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
SOAPElement. addNamespaceDeclaration(String prefix, String uri)
Adds a namespace declaration with the specified prefix and URI to thisSOAPElement
object.SOAPElement
SOAPElement. addTextNode(String text)
Creates a newText
object initialized with the givenString
and adds it to thisSOAPElement
object.SOAPElement
SOAPElementFactory. create(Name name)
Deprecated.Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) insteadSOAPElement
SOAPElementFactory. create(String localName)
Deprecated.Use javax.xml.soap.SOAPFactory.createElement(String localName) insteadSOAPElement
SOAPElementFactory. create(String localName, String prefix, String uri)
Deprecated.Use javax.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) insteadSOAPElement
SOAPFactory. createElement(Element domElement)
Creates aSOAPElement
object from an existing DOMElement
.abstract SOAPElement
SOAPFactory. createElement(Name name)
Creates aSOAPElement
object initialized with the givenName
object.SOAPElement
SOAPFactory. createElement(QName qname)
Creates aSOAPElement
object initialized with the givenQName
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.SOAPElement
Node. getParentElement()
Returns the parent element of thisNode
object.SOAPElement
SOAPElement. setElementQName(QName newName)
Changes the name of thisElement
tonewName
if possible.Methods in javax.xml.soap with parameters of type SOAPElement Modifier and Type Method and Description SOAPElement
SOAPElement. 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 javax.xml.soap with parameters of type SOAPElement Constructor and Description SAAJResult(SOAPElement rootNode)
Creates aSAAJResult
that will write the results as a child node of theSOAPElement
specified.
-
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2022, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.