- java.lang.Object
- 
- javax.xml.soap.SOAPElementFactory
 
- 
 Deprecated.- Usejavax.xml.soap.SOAPFactoryfor creating SOAPElements.
 public class SOAPElementFactory extends Object SOAPElementFactoryis a factory for XML fragments that will eventually end up in the SOAP part. These fragments can be inserted as children of theSOAPHeaderorSOAPBodyorSOAPEnvelope.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:
- SOAPFactory
 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description SOAPElementcreate(String localName)Deprecated.Use javax.xml.soap.SOAPFactory.createElement(String localName) insteadSOAPElementcreate(String localName, String prefix, String uri)Deprecated.Use javax.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) insteadSOAPElementcreate(Name name)Deprecated.Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) insteadstatic SOAPElementFactorynewInstance()Deprecated.Creates a new instance ofSOAPElementFactory.
 
- 
- 
- 
Method Detail- 
createpublic SOAPElement create(Name name) throws SOAPException Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) insteadCreate aSOAPElementobject initialized with the givenNameobject.- Parameters:
- name- a- Nameobject with the XML name for the new element
- Returns:
- the new SOAPElementobject that was created
- Throws:
- SOAPException- if there is an error in creating the- SOAPElementobject
- See Also:
- SOAPFactory.createElement(javax.xml.soap.Name),- SOAPFactory.createElement(javax.xml.namespace.QName)
 
 - 
createpublic SOAPElement create(String localName) throws SOAPException Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName) insteadCreate aSOAPElementobject initialized with the given local name.- Parameters:
- localName- a- Stringgiving the local name for the new element
- Returns:
- the new SOAPElementobject that was created
- Throws:
- SOAPException- if there is an error in creating the- SOAPElementobject
- See Also:
- SOAPFactory.createElement(java.lang.String)
 
 - 
createpublic SOAPElement create(String localName, String prefix, String uri) throws SOAPException Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) insteadCreate a newSOAPElementobject with the given local name, prefix and uri.- Parameters:
- localName- a- Stringgiving the local name for the new element
- prefix- the prefix for this- SOAPElement
- uri- a- Stringgiving the URI of the namespace to which the new element belongs
- Returns:
- the new SOAPElementobject that was created
- Throws:
- SOAPException- if there is an error in creating the- SOAPElementobject
- See Also:
- SOAPFactory.createElement(java.lang.String, java.lang.String, java.lang.String)
 
 - 
newInstancepublic static SOAPElementFactory newInstance() throws SOAPException Deprecated.Creates a new instance ofSOAPElementFactory.- Returns:
- a new instance of a SOAPElementFactory
- Throws:
- SOAPException- if there was an error creating the default- SOAPElementFactory
 
 
- 
 
-