Class XMLPartFactoryImpl
- java.lang.Object
-
- org.apache.axis2.jaxws.message.impl.XMLPartFactoryImpl
-
- All Implemented Interfaces:
XMLPartFactory
public class XMLPartFactoryImpl extends Object implements XMLPartFactory
MessageFactoryImpl
-
-
Constructor Summary
Constructors Constructor Description XMLPartFactoryImpl()Default Constructor required for Factory
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XMLPartcreate(Protocol protocol)create empty XMLPart of the specified protocolXMLPartcreateFrom(SOAPEnvelope soapEnvelope)create XMLPart from SOAPEnvelopeXMLPartcreateFrom(XMLStreamReader reader, Protocol protocol)create XMLPart from XMLStreamReaderXMLPartcreateFrom(OMElement omElement, Protocol protocol)create XMLPart from OMElement
-
-
-
Method Detail
-
createFrom
public XMLPart createFrom(XMLStreamReader reader, Protocol protocol) throws XMLStreamException, WebServiceException
Description copied from interface:XMLPartFactorycreate XMLPart from XMLStreamReader- Specified by:
createFromin interfaceXMLPartFactory- Parameters:
reader- XMLStreamReaderprotocol- (if null, the soap protocol is inferred from the namespace)- Throws:
XMLStreamExceptionWebServiceException
-
createFrom
public XMLPart createFrom(OMElement omElement, Protocol protocol) throws XMLStreamException, WebServiceException
Description copied from interface:XMLPartFactorycreate XMLPart from OMElement- Specified by:
createFromin interfaceXMLPartFactory- Parameters:
omElement- OMElementprotocol- (if null, the soap protocol is inferred from the namespace)- Throws:
WebServiceExceptionXMLStreamException
-
create
public XMLPart create(Protocol protocol) throws XMLStreamException, WebServiceException
Description copied from interface:XMLPartFactorycreate empty XMLPart of the specified protocol- Specified by:
createin interfaceXMLPartFactory- Throws:
WebServiceExceptionXMLStreamException
-
createFrom
public XMLPart createFrom(SOAPEnvelope soapEnvelope) throws XMLStreamException, WebServiceException
Description copied from interface:XMLPartFactorycreate XMLPart from SOAPEnvelope- Specified by:
createFromin interfaceXMLPartFactory- Parameters:
soapEnvelope- SOAPEnvelope- Throws:
WebServiceExceptionXMLStreamException
-
-