javax.xml.soap.SOAPFactory
for creating SOAPElements.public class SOAPElementFactory
extends java.lang.Object
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.
SOAPFactory
Modifier and Type | Method and Description |
---|---|
SOAPElement |
create(Name name)
Deprecated.
Use
javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name)
instead
|
SOAPElement |
create(java.lang.String localName)
Deprecated.
Use
javax.xml.soap.SOAPFactory.createElement(String localName) instead
|
SOAPElement |
create(java.lang.String localName,
java.lang.String prefix,
java.lang.String uri)
Deprecated.
Use
javax.xml.soap.SOAPFactory.createElement(String localName,
String prefix,
String uri)
instead
|
static SOAPElementFactory |
newInstance()
Deprecated.
Creates a new instance of
SOAPElementFactory . |
public SOAPElement create(Name name) throws SOAPException
SOAPElement
object initialized with the
given Name
object.name
- a Name
object with the XML name for
the new elementSOAPElement
object that was
createdSOAPException
- if there is an error in creating the
SOAPElement
objectSOAPFactory.createElement(javax.xml.soap.Name)
,
SOAPFactory.createElement(javax.xml.namespace.QName)
public SOAPElement create(java.lang.String localName) throws SOAPException
SOAPElement
object initialized with the
given local name.localName
- a String
giving the local name for
the new elementSOAPElement
object that was
createdSOAPException
- if there is an error in creating the
SOAPElement
objectSOAPFactory.createElement(java.lang.String)
public SOAPElement create(java.lang.String localName, java.lang.String prefix, java.lang.String uri) throws SOAPException
SOAPElement
object with the given
local name, prefix and uri.localName
- a String
giving the local name
for the new elementprefix
- the prefix for this SOAPElement
uri
- a String
giving the URI of the
namespace to which the new element belongsSOAPElement
object that was
createdSOAPException
- if there is an error in creating the
SOAPElement
objectSOAPFactory.createElement(java.lang.String, java.lang.String, java.lang.String)
public static SOAPElementFactory newInstance() throws SOAPException
SOAPElementFactory
.SOAPElementFactory
SOAPException
- if there was an error creating the
default SOAPElementFactory