API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.xml.soap. SOAPFactory View Source
Author(s)
Since
Version
Serial
Hierarchy
 Object
      SOAPFactory
Implements
Subclasses
Description
publicabstract abstract class SOAPFactory
  SOAPFactory is a factory for creating various objects that exist in the SOAP XML tree.
See also:   
Constructors
public SOAPFactory ()
Methods
Hide/Show inherited methods
publicabstract Detail createDetail () throws SOAPException
  Creates a new Detail object which serves as a container for DetailEntry objects.
public SOAPElement createElement (Element domElement) throws SOAPException
  Creates a SOAPElement object from an existing DOM Element.
publicabstract SOAPElement createElement (Name name) throws SOAPException
  Creates a SOAPElement object initialized with the given Name object.
public SOAPElement createElement (QName qname) throws SOAPException
  Creates a SOAPElement object initialized with the given QName object.
publicabstract SOAPElement createElement (String localName) throws SOAPException
  Creates a SOAPElement object initialized with the given local name.
publicabstract SOAPElement createElement (String localName, String prefix, String uri) throws SOAPException
  Creates a new SOAPElement object with the given local name, prefix and uri.
publicabstract SOAPFault createFault () throws SOAPException
  Creates a new default SOAPFault object
publicabstract SOAPFault createFault (String reasonText, QName faultCode) throws SOAPException
  Creates a new SOAPFault object initialized with the given reasonText and faultCode
publicabstract Name createName (String localName) throws SOAPException
  Creates a new Name object initialized with the given local name.
publicabstract Name createName (String localName, String prefix, String uri) throws SOAPException
  Creates a new Name object initialized with the given local name, namespace prefix, and namespace URI.
publicstatic SOAPFactory newInstance () throws SOAPException
  Creates a new SOAPFactory object that is an instance of the default implementation (SOAP 1.1), This method uses the following ordered lookup procedure to determine the SOAPFactory implementation class to load: Use the javax.xml.soap.SOAPFactory system property.
publicstatic SOAPFactory newInstance (String protocol) throws SOAPException
  Creates a new SOAPFactory object that is an instance of the specified implementation, this method uses the SAAJMetaFactory to locate the implementation class and create the SOAPFactory instance.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar