Package org.apache.axis2.saaj
Class SOAPFactoryImpl
java.lang.Object
jakarta.xml.soap.SOAPFactory
org.apache.axis2.saaj.SOAPFactoryImpl
public class SOAPFactoryImpl
extends jakarta.xml.soap.SOAPFactory
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionjakarta.xml.soap.DetailCreates a newDetailobject which serves as a container forDetailEntryobjects.jakarta.xml.soap.SOAPElementcreateElement(jakarta.xml.soap.Name name) Create aSOAPElementobject initialized with the givenNameobject.jakarta.xml.soap.SOAPElementcreateElement(String localName) Create aSOAPElementobject initialized with the given local name.jakarta.xml.soap.SOAPElementcreateElement(String localName, String prefix, String uri) Create a newSOAPElementobject with the given local name, prefix and uri.jakarta.xml.soap.SOAPElementcreateElement(QName qname) jakarta.xml.soap.SOAPElementcreateElement(Element element) jakarta.xml.soap.SOAPFaultCreates a new default SOAPFault objectjakarta.xml.soap.SOAPFaultcreateFault(String reasonText, QName faultCode) Creates a new SOAPFault object initialized with the given reasonText and faultCodejakarta.xml.soap.NamecreateName(String localName) Creates a newNameobject initialized with the given local name.jakarta.xml.soap.NamecreateName(String localName, String prefix, String uri) Creates a newNameobject initialized with the given local name, namespace prefix, and namespace URI.voidsetSOAPVersion(String soapVersion) Methods inherited from class jakarta.xml.soap.SOAPFactory
newInstance, newInstance
-
Field Details
-
soapVersion
-
-
Constructor Details
-
SOAPFactoryImpl
public SOAPFactoryImpl()
-
-
Method Details
-
createElement
public jakarta.xml.soap.SOAPElement createElement(jakarta.xml.soap.Name name) throws jakarta.xml.soap.SOAPException Create aSOAPElementobject initialized with the givenNameobject.- Specified by:
createElementin classjakarta.xml.soap.SOAPFactory- Parameters:
name- aNameobject with the XML name for the new element- Returns:
- the new
SOAPElementobject that was created - Throws:
jakarta.xml.soap.SOAPException- if there is an error in creating theSOAPElementobject
-
createElement
public jakarta.xml.soap.SOAPElement createElement(String localName) throws jakarta.xml.soap.SOAPException Create aSOAPElementobject initialized with the given local name.- Specified by:
createElementin classjakarta.xml.soap.SOAPFactory- Parameters:
localName- aStringgiving the local name for the new element- Returns:
- the new
SOAPElementobject that was created - Throws:
jakarta.xml.soap.SOAPException- if there is an error in creating theSOAPElementobject
-
createElement
public jakarta.xml.soap.SOAPElement createElement(String localName, String prefix, String uri) throws jakarta.xml.soap.SOAPException Create a newSOAPElementobject with the given local name, prefix and uri.- Specified by:
createElementin classjakarta.xml.soap.SOAPFactory- Parameters:
localName- aStringgiving the local name for the new elementprefix- the prefix for thisSOAPElementuri- aStringgiving the URI of the namespace to which the new element belongs- Returns:
- the new
SOAPElementobject that was created - Throws:
jakarta.xml.soap.SOAPException- if there is an error in creating theSOAPElementobject
-
createDetail
public jakarta.xml.soap.Detail createDetail() throws jakarta.xml.soap.SOAPExceptionCreates a newDetailobject which serves as a container forDetailEntryobjects. This factory method createsDetailobjects for use in situations where it is not practical to use theSOAPFaultabstraction.- Specified by:
createDetailin classjakarta.xml.soap.SOAPFactory- Returns:
- a
Detailobject - Throws:
jakarta.xml.soap.SOAPException- if there is a SOAP error
-
createName
public jakarta.xml.soap.Name createName(String localName, String prefix, String uri) throws jakarta.xml.soap.SOAPException Creates a newNameobject initialized with the given local name, namespace prefix, and namespace URI. This factory method createsNameobjects for use in situations where it is not practical to use theSOAPEnvelopeabstraction.- Specified by:
createNamein classjakarta.xml.soap.SOAPFactory- Parameters:
localName- aStringgiving the local nameprefix- aStringgiving the prefix of the namespaceuri- aStringgiving the URI of the namespace- Returns:
- a
Nameobject initialized with the given local name, namespace prefix, and namespace URI - Throws:
jakarta.xml.soap.SOAPException- if there is a SOAP error
-
createName
Creates a newNameobject initialized with the given local name. This factory method createsNameobjects for use in situations where it is not practical to use theSOAPEnvelopeabstraction.- Specified by:
createNamein classjakarta.xml.soap.SOAPFactory- Parameters:
localName- aStringgiving the local name- Returns:
- a
Nameobject initialized with the given local name - Throws:
jakarta.xml.soap.SOAPException- if there is a SOAP error
-
createFault
public jakarta.xml.soap.SOAPFault createFault() throws jakarta.xml.soap.SOAPExceptionCreates a new default SOAPFault object- Specified by:
createFaultin classjakarta.xml.soap.SOAPFactory- Returns:
- a SOAPFault object
- Throws:
jakarta.xml.soap.SOAPException- - if there is a SOAP error
-
createFault
public jakarta.xml.soap.SOAPFault createFault(String reasonText, QName faultCode) throws jakarta.xml.soap.SOAPException Creates a new SOAPFault object initialized with the given reasonText and faultCode- Specified by:
createFaultin classjakarta.xml.soap.SOAPFactory- Parameters:
reasonText- - the ReasonText/FaultString for the fault faultCode - the FaultCode for the fault- Throws:
jakarta.xml.soap.SOAPException
-
setSOAPVersion
-
createElement
public jakarta.xml.soap.SOAPElement createElement(QName qname) throws jakarta.xml.soap.SOAPException - Overrides:
createElementin classjakarta.xml.soap.SOAPFactory- Throws:
jakarta.xml.soap.SOAPException
-
createElement
public jakarta.xml.soap.SOAPElement createElement(Element element) throws jakarta.xml.soap.SOAPException - Overrides:
createElementin classjakarta.xml.soap.SOAPFactory- Throws:
jakarta.xml.soap.SOAPException
-