Class SOAPFactory1_1Impl
- java.lang.Object
-
- jakarta.xml.soap.SOAPFactory
-
- com.sun.xml.messaging.saaj.soap.SOAPFactoryImpl
-
- com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl
-
public class SOAPFactory1_1Impl extends SOAPFactoryImpl
-
-
Constructor Summary
Constructors Constructor Description SOAPFactory1_1Impl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DetailcreateDetail()Creates a newDetailobject which serves as a container forDetailEntryobjects.protected SOAPDocumentImplcreateDocument()SOAPFaultcreateFault()Creates a new defaultSOAPFaultobjectSOAPFaultcreateFault(String reasonText, QName faultCode)Creates a newSOAPFaultobject initialized with the givenreasonTextandfaultCode-
Methods inherited from class com.sun.xml.messaging.saaj.soap.SOAPFactoryImpl
createElement, createElement, createElement, createElement, createElement, createName, createName
-
Methods inherited from class jakarta.xml.soap.SOAPFactory
newInstance, newInstance
-
-
-
-
Method Detail
-
createDocument
protected SOAPDocumentImpl createDocument()
- Specified by:
createDocumentin classSOAPFactoryImpl
-
createDetail
public Detail createDetail() throws SOAPException
Description copied from class:SOAPFactoryCreates a newDetailobject which serves as a container forDetailEntryobjects.This factory method creates
Detailobjects for use in situations where it is not practical to use theSOAPFaultabstraction.- Overrides:
createDetailin classSOAPFactoryImpl- Returns:
- a
Detailobject - Throws:
SOAPException- if there is a SOAP error
-
createFault
public SOAPFault createFault(String reasonText, QName faultCode) throws SOAPException
Description copied from class:SOAPFactoryCreates a newSOAPFaultobject initialized with the givenreasonTextandfaultCode- Overrides:
createFaultin classSOAPFactoryImpl- Parameters:
reasonText- the ReasonText/FaultString for the faultfaultCode- the FaultCode for the fault- Returns:
- a
SOAPFaultobject - Throws:
SOAPException- if there is a SOAP error
-
createFault
public SOAPFault createFault() throws SOAPException
Description copied from class:SOAPFactoryCreates a new defaultSOAPFaultobject- Overrides:
createFaultin classSOAPFactoryImpl- Returns:
- a
SOAPFaultobject - Throws:
SOAPException- if there is a SOAP error
-
-