Save This Page
Home » xmlbeans-2.4.0-src » org.apache.xmlbeans.impl.soap » [javadoc | source]
org.apache.xmlbeans.impl.soap
public class: SOAPElementFactory [javadoc | source]
java.lang.Object
   org.apache.xmlbeans.impl.soap.SOAPElementFactory
Deprecated! - - Use javax.xml.soap.SOAPFactory for creating SOAPElements.

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 from org.apache.xmlbeans.impl.soap.SOAPElementFactory Summary:
create,   create,   create,   newInstance
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.xmlbeans.impl.soap.SOAPElementFactory Detail:
 public SOAPElement create(Name name) throws SOAPException 
Deprecated! Use - javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) instead

      Deprecated!
    Create a SOAPElement object initialized with the given Name object.
 public SOAPElement create(String localName) throws SOAPException 
Deprecated! Use - javax.xml.soap.SOAPFactory.createElement(String localName) instead

      Deprecated!
    Create a SOAPElement object initialized with the given local name.
 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

      Deprecated!
    Create a new SOAPElement object with the given local name, prefix and uri.
 public static SOAPElementFactory newInstance() throws SOAPException 
Deprecated!
      Deprecated!
    Creates a new instance of SOAPElementFactory.