| Prev Class | Next Class | Frames | No Frames |
| Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Objectjavax.xml.soap.SOAPElementFactorypublic class SOAPElementFactoryextends java.lang.ObjectSOAPElementFactory 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.
SOAPFactoryMethod Summary | |
SOAPElement |
|
SOAPElement |
|
SOAPElement | |
static SOAPElementFactory |
|
public SOAPElement create(String localName) throws SOAPException
Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName) instead
Create aSOAPElementobject 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)
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 newSOAPElementobject with the given local name, prefix and uri.
- Parameters:
localName- aStringgiving the local name for the new elementprefix- the prefix for thisSOAPElementuri- aStringgiving 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 theSOAPElementobject
- See Also:
SOAPFactory.createElement(java.lang.String, java.lang.String, java.lang.String)
public SOAPElement create(Name name) throws SOAPException
Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) instead
Create aSOAPElementobject initialized with the givenNameobject.
- 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
public static SOAPElementFactory newInstance() throws SOAPException
Creates a new instance ofSOAPElementFactory.
- Returns:
- a new instance of a
SOAPElementFactory
- Throws:
SOAPException- if there was an error creating the defaultSOAPElementFactory