Class SOAPElementFactory
- java.lang.Object
-  - javax.xml.soap.SOAPElementFactory
 
Deprecated.
- Use javax.xml.soap.SOAPFactory for creating SOAPElements.
public class SOAPElementFactory extends 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.
- See Also:
- SOAPFactory
Methods
| Modifier and Type | Method and Description | 
|---|---|
| SOAPElement | create(Name name)Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) instead | 
| SOAPElement | create(String localName)Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName) instead | 
| SOAPElement | create(String localName,
      String prefix,
      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  | 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait    Methods
create
public SOAPElement create(Name name)
                   throws SOAPException Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) instead
Create a SOAPElement object initialized with the given Name object.
- Parameters:
- 
name- aNameobject with the XML name for the new element
- Returns:
- the new SOAPElementobject that was created
- Throws:
- 
SOAPException- if there is an error in creating theSOAPElementobject
- See Also:
- 
SOAPFactory.createElement(javax.xml.soap.Name),SOAPFactory.createElement(javax.xml.namespace.QName)
create
public SOAPElement create(String localName)
                   throws SOAPException Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName) instead
Create a SOAPElement object initialized with the given local name.
- Parameters:
- 
localName- aStringgiving the local name for the new element
- Returns:
- the new SOAPElementobject that was created
- Throws:
- 
SOAPException- if there is an error in creating theSOAPElementobject
- See Also:
- SOAPFactory.createElement(java.lang.String)
create
public SOAPElement create(String localName,
                          String prefix,
                          String uri)
                   throws SOAPException Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) instead
Create a new SOAPElement object with the given local name, prefix and uri.
- Parameters:
- 
localName- aStringgiving the local name for the new element
- 
prefix- the prefix for thisSOAPElement
- 
uri- aStringgiving the URI of the namespace to which the new element belongs
- Throws:
- 
SOAPException- if there is an error in creating theSOAPElementobject
- See Also:
- SOAPFactory.createElement(java.lang.String, java.lang.String, java.lang.String)
newInstance
public static SOAPElementFactory newInstance()
                                      throws SOAPException Deprecated.
Creates a new instance of SOAPElementFactory.
- Returns:
- a new instance of a SOAPElementFactory
- Throws:
- 
SOAPException- if there was an error creating the defaultSOAPElementFactory
    © 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
    https://docs.oracle.com/javase/8/docs/api/javax/xml/soap/SOAPElementFactory.html