Package jakarta.xml.soap
Class SOAPElementFactory
java.lang.Object
jakarta.xml.soap.SOAPElementFactory
Deprecated.
SOAPElementFactory
is a factory for XML fragments that
will eventually end up in the SOAP part. These fragments
can be inserted as children of the SOAPHeader
or
SOAPBody
or SOAPEnvelope
.
Elements created using this factory do not have the properties of an element that lives inside a SOAP header document. These elements are copied into the XML document tree when they are inserted.
- Since:
- 1.6
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Use jakarta.xml.soap.SOAPFactory.createElement(jakarta.xml.soap.Name) insteadDeprecated.Use jakarta.xml.soap.SOAPFactory.createElement(String localName) insteadDeprecated.Use jakarta.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) insteadstatic SOAPElementFactory
Deprecated.Creates a new instance ofSOAPElementFactory
.
-
Method Details
-
create
Deprecated.Use jakarta.xml.soap.SOAPFactory.createElement(jakarta.xml.soap.Name) insteadCreate aSOAPElement
object initialized with the givenName
object.- Parameters:
name
- aName
object with the XML name for the new element- Returns:
- the new
SOAPElement
object that was created - Throws:
SOAPException
- if there is an error in creating theSOAPElement
object- See Also:
-
create
Deprecated.Use jakarta.xml.soap.SOAPFactory.createElement(String localName) insteadCreate aSOAPElement
object initialized with the given local name.- Parameters:
localName
- aString
giving the local name for the new element- Returns:
- the new
SOAPElement
object that was created - Throws:
SOAPException
- if there is an error in creating theSOAPElement
object- See Also:
-
create
Deprecated.Use jakarta.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) insteadCreate a newSOAPElement
object with the given local name, prefix and uri.- Parameters:
localName
- aString
giving the local name for the new elementprefix
- the prefix for thisSOAPElement
uri
- aString
giving the URI of the namespace to which the new element belongs- Returns:
- the new
SOAPElement
object that was created - Throws:
SOAPException
- if there is an error in creating theSOAPElement
object- See Also:
-
newInstance
Deprecated.Creates a new instance ofSOAPElementFactory
.- Returns:
- a new instance of a
SOAPElementFactory
- Throws:
SOAPException
- if there was an error creating the defaultSOAPElementFactory
-
jakarta.xml.soap.SOAPFactory
for creating SOAPElements.