FileDocCategorySizeDatePackage
SOAPFactoryImpl.javaAPI DocApache Axis 1.43354Sat Apr 22 18:57:28 BST 2006org.apache.axis.soap

SOAPFactoryImpl

public class SOAPFactoryImpl extends SOAPFactory
SOAP Element Factory implementation
author
Davanum Srinivas (dims@yahoo.com)

Fields Summary
Constructors Summary
Methods Summary
public javax.xml.soap.DetailcreateDetail()

        return new Detail();
    
public javax.xml.soap.SOAPElementcreateElement(javax.xml.soap.Name name)
Create a SOAPElement object initialized with the given Name object.

param
name a Name object with the XML name for the new element
return
the new SOAPElement object that was created
throws
SOAPException if there is an error in creating the SOAPElement object

        return new MessageElement(name);
    
public javax.xml.soap.SOAPElementcreateElement(java.lang.String localName)
Create a SOAPElement object initialized with the given local name.

param
localName a String giving the local name for the new element
return
the new SOAPElement object that was created
throws
SOAPException if there is an error in creating the SOAPElement object

        return new MessageElement("",localName);
    
public javax.xml.soap.SOAPElementcreateElement(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
Create a new SOAPElement object with the given local name, prefix and uri.

param
localName a String giving the local name for the new element
param
prefix the prefix for this SOAPElement
param
uri a String giving the URI of the namespace to which the new element belongs
return
the new SOAPElement object that was created
throws
SOAPException if there is an error in creating the SOAPElement object

        return new MessageElement(localName, prefix, uri);
    
public javax.xml.soap.NamecreateName(java.lang.String localName, java.lang.String prefix, java.lang.String uri)

        return new PrefixedQName(uri,localName,prefix);
    
public javax.xml.soap.NamecreateName(java.lang.String localName)

        return new PrefixedQName("",localName,"");