- java.lang.Object
-
- javax.xml.soap.SOAPFactory
-
- com.sun.xml.messaging.saaj.soap.SOAPFactoryImpl
-
- Direct Known Subclasses:
SOAPFactory1_1Impl,SOAPFactory1_2Impl,SOAPFactoryDynamicImpl
public abstract class SOAPFactoryImpl extends SOAPFactory
-
-
Constructor Summary
Constructors Constructor Description SOAPFactoryImpl()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description DetailcreateDetail()protected abstract SOAPDocumentImplcreateDocument()SOAPElementcreateElement(String tagName)SOAPElementcreateElement(String localName, String prefix, String uri)SOAPElementcreateElement(QName qname)SOAPElementcreateElement(Name name)SOAPElementcreateElement(Element domElement)SOAPFaultcreateFault()SOAPFaultcreateFault(String reasonText, QName faultCode)NamecreateName(String localName)NamecreateName(String localName, String prefix, String uri)-
Methods inherited from class javax.xml.soap.SOAPFactory
newInstance, newInstance
-
-
-
-
Field Detail
-
log
protected static final Logger log
-
-
Method Detail
-
createDocument
protected abstract SOAPDocumentImpl createDocument()
-
createElement
public SOAPElement createElement(String tagName) throws SOAPException
- Specified by:
createElementin classSOAPFactory- Throws:
SOAPException
-
createElement
public SOAPElement createElement(Name name) throws SOAPException
- Specified by:
createElementin classSOAPFactory- Throws:
SOAPException
-
createElement
public SOAPElement createElement(QName qname) throws SOAPException
- Overrides:
createElementin classSOAPFactory- Throws:
SOAPException
-
createElement
public SOAPElement createElement(String localName, String prefix, String uri) throws SOAPException
- Specified by:
createElementin classSOAPFactory- Throws:
SOAPException
-
createName
public Name createName(String localName, String prefix, String uri) throws SOAPException
- Specified by:
createNamein classSOAPFactory- Throws:
SOAPException
-
createName
public Name createName(String localName) throws SOAPException
- Specified by:
createNamein classSOAPFactory- Throws:
SOAPException
-
createElement
public SOAPElement createElement(Element domElement) throws SOAPException
- Overrides:
createElementin classSOAPFactory- Throws:
SOAPException
-
createDetail
public Detail createDetail() throws SOAPException
- Specified by:
createDetailin classSOAPFactory- Throws:
SOAPException
-
createFault
public SOAPFault createFault(String reasonText, QName faultCode) throws SOAPException
- Specified by:
createFaultin classSOAPFactory- Throws:
SOAPException
-
createFault
public SOAPFault createFault() throws SOAPException
- Specified by:
createFaultin classSOAPFactory- Throws:
SOAPException
-
-