org.apache.axis.soap

Class SOAPFactoryImpl


public class SOAPFactoryImpl
extends SOAPFactory

SOAP Element Factory implementation
Author:
Davanum Srinivas (dims@yahoo.com)

Method Summary

Detail
createDetail()
SOAPElement
createElement(String localName)
Create a SOAPElement object initialized with the given local name.
SOAPElement
createElement(String localName, String prefix, String uri)
Create a new SOAPElement object with the given local name, prefix and uri.
SOAPElement
createElement(Name name)
Create a SOAPElement object initialized with the given Name object.
Name
createName(String localName)
Name
createName(String localName, String prefix, String uri)

Methods inherited from class javax.xml.soap.SOAPFactory

createDetail, createElement, createElement, createElement, createName, createName, newInstance

Method Details

createDetail

public Detail createDetail()
            throws SOAPException
Overrides:
createDetail in interface SOAPFactory

createElement

public SOAPElement createElement(String localName)
            throws SOAPException
Create a SOAPElement object initialized with the given local name.
Overrides:
createElement in interface SOAPFactory
Parameters:
localName - a String giving the local name for the new element
Returns:
the new SOAPElement object that was created
Throws:
SOAPException - if there is an error in creating the SOAPElement object

createElement

public SOAPElement createElement(String localName,
                                 String prefix,
                                 String uri)
            throws SOAPException
Create a new SOAPElement object with the given local name, prefix and uri.
Overrides:
createElement in interface SOAPFactory
Parameters:
localName - a String giving the local name for the new element
prefix - the prefix for this SOAPElement
uri - a String giving the URI of the namespace to which the new element belongs
Returns:
the new SOAPElement object that was created
Throws:
SOAPException - if there is an error in creating the SOAPElement object

createElement

public SOAPElement createElement(Name name)
            throws SOAPException
Create a SOAPElement object initialized with the given Name object.
Overrides:
createElement in interface SOAPFactory
Parameters:
name - a Name object with the XML name for the new element
Returns:
the new SOAPElement object that was created
Throws:
SOAPException - if there is an error in creating the SOAPElement object

createName

public Name createName(String localName)
            throws SOAPException
Overrides:
createName in interface SOAPFactory

createName

public Name createName(String localName,
                       String prefix,
                       String uri)
            throws SOAPException
Overrides:
createName in interface SOAPFactory

Copyright B) 2005 Apache Web Services Project. All Rights Reserved.