javax.xml.soap
Class SOAPElementFactory

java.lang.Object
  extended byjavax.xml.soap.SOAPElementFactory

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.


Method Summary
 SOAPElement (src) create(Name (src)  name)
          Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name)
 SOAPElement (src) create(java.lang.String localName)
          Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name)
 SOAPElement (src) 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 (src) newInstance()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

newInstance

public static SOAPElementFactory (src)  newInstance()
                                      throws SOAPException (src) 
Returns:
Throws:
SOAPException (src)

create

public SOAPElement (src)  create(java.lang.String localName)
                   throws SOAPException (src) 
Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name)

Returns:
Throws:
SOAPException (src)

create

public SOAPElement (src)  create(java.lang.String localName,
                          java.lang.String prefix,
                          java.lang.String uri)
                   throws SOAPException (src) 
Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) instead

Parameters:
localName -
prefix -
uri -
Returns:
Throws:
SOAPException (src)

create

public SOAPElement (src)  create(Name (src)  name)
                   throws SOAPException (src) 
Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name)

Parameters:
name -
Returns:
Throws:
SOAPException (src)