Package com.sun.xml.messaging.saaj.soap
Class SOAPFactoryImpl
- java.lang.Object
-
- jakarta.xml.soap.SOAPFactory
-
- com.sun.xml.messaging.saaj.soap.SOAPFactoryImpl
-
- Direct Known Subclasses:
SOAPFactory1_1Impl
,SOAPFactory1_2Impl
,SOAPFactoryDynamicImpl
public abstract class SOAPFactoryImpl extends jakarta.xml.soap.SOAPFactory
-
-
Constructor Summary
Constructors Constructor Description SOAPFactoryImpl()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description jakarta.xml.soap.Detail
createDetail()
protected abstract SOAPDocumentImpl
createDocument()
jakarta.xml.soap.SOAPElement
createElement(jakarta.xml.soap.Name name)
jakarta.xml.soap.SOAPElement
createElement(String tagName)
jakarta.xml.soap.SOAPElement
createElement(String localName, String prefix, String uri)
jakarta.xml.soap.SOAPElement
createElement(QName qname)
jakarta.xml.soap.SOAPElement
createElement(Element domElement)
jakarta.xml.soap.SOAPFault
createFault()
jakarta.xml.soap.SOAPFault
createFault(String reasonText, QName faultCode)
jakarta.xml.soap.Name
createName(String localName)
jakarta.xml.soap.Name
createName(String localName, String prefix, String uri)
-
-
-
Field Detail
-
log
protected static final Logger log
-
-
Method Detail
-
createDocument
protected abstract SOAPDocumentImpl createDocument()
-
createElement
public jakarta.xml.soap.SOAPElement createElement(String tagName) throws jakarta.xml.soap.SOAPException
- Specified by:
createElement
in classjakarta.xml.soap.SOAPFactory
- Throws:
jakarta.xml.soap.SOAPException
-
createElement
public jakarta.xml.soap.SOAPElement createElement(jakarta.xml.soap.Name name) throws jakarta.xml.soap.SOAPException
- Specified by:
createElement
in classjakarta.xml.soap.SOAPFactory
- Throws:
jakarta.xml.soap.SOAPException
-
createElement
public jakarta.xml.soap.SOAPElement createElement(QName qname) throws jakarta.xml.soap.SOAPException
- Overrides:
createElement
in classjakarta.xml.soap.SOAPFactory
- Throws:
jakarta.xml.soap.SOAPException
-
createElement
public jakarta.xml.soap.SOAPElement createElement(String localName, String prefix, String uri) throws jakarta.xml.soap.SOAPException
- Specified by:
createElement
in classjakarta.xml.soap.SOAPFactory
- Throws:
jakarta.xml.soap.SOAPException
-
createName
public jakarta.xml.soap.Name createName(String localName, String prefix, String uri) throws jakarta.xml.soap.SOAPException
- Specified by:
createName
in classjakarta.xml.soap.SOAPFactory
- Throws:
jakarta.xml.soap.SOAPException
-
createName
public jakarta.xml.soap.Name createName(String localName) throws jakarta.xml.soap.SOAPException
- Specified by:
createName
in classjakarta.xml.soap.SOAPFactory
- Throws:
jakarta.xml.soap.SOAPException
-
createElement
public jakarta.xml.soap.SOAPElement createElement(Element domElement) throws jakarta.xml.soap.SOAPException
- Overrides:
createElement
in classjakarta.xml.soap.SOAPFactory
- Throws:
jakarta.xml.soap.SOAPException
-
createDetail
public jakarta.xml.soap.Detail createDetail() throws jakarta.xml.soap.SOAPException
- Specified by:
createDetail
in classjakarta.xml.soap.SOAPFactory
- Throws:
jakarta.xml.soap.SOAPException
-
createFault
public jakarta.xml.soap.SOAPFault createFault(String reasonText, QName faultCode) throws jakarta.xml.soap.SOAPException
- Specified by:
createFault
in classjakarta.xml.soap.SOAPFactory
- Throws:
jakarta.xml.soap.SOAPException
-
createFault
public jakarta.xml.soap.SOAPFault createFault() throws jakarta.xml.soap.SOAPException
- Specified by:
createFault
in classjakarta.xml.soap.SOAPFactory
- Throws:
jakarta.xml.soap.SOAPException
-
-