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 XMLPart
create(Protocol protocol)
create empty XMLPart of the specified protocolXMLPart
createFrom(SOAPEnvelope soapEnvelope)
create XMLPart from SOAPEnvelopeXMLPart
createFrom(XMLStreamReader reader, Protocol protocol)
create XMLPart from XMLStreamReaderXMLPart
createFrom(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:XMLPartFactory
create XMLPart from XMLStreamReader- Specified by:
createFrom
in interfaceXMLPartFactory
- Parameters:
reader
- XMLStreamReaderprotocol
- (if null, the soap protocol is inferred from the namespace)- Throws:
XMLStreamException
WebServiceException
-
createFrom
public XMLPart createFrom(OMElement omElement, Protocol protocol) throws XMLStreamException, WebServiceException
Description copied from interface:XMLPartFactory
create XMLPart from OMElement- Specified by:
createFrom
in interfaceXMLPartFactory
- Parameters:
omElement
- OMElementprotocol
- (if null, the soap protocol is inferred from the namespace)- Throws:
WebServiceException
XMLStreamException
-
create
public XMLPart create(Protocol protocol) throws XMLStreamException, WebServiceException
Description copied from interface:XMLPartFactory
create empty XMLPart of the specified protocol- Specified by:
create
in interfaceXMLPartFactory
- Throws:
WebServiceException
XMLStreamException
-
createFrom
public XMLPart createFrom(SOAPEnvelope soapEnvelope) throws XMLStreamException, WebServiceException
Description copied from interface:XMLPartFactory
create XMLPart from SOAPEnvelope- Specified by:
createFrom
in interfaceXMLPartFactory
- Parameters:
soapEnvelope
- SOAPEnvelope- Throws:
WebServiceException
XMLStreamException
-
-