Class OMBlockImpl
- java.lang.Object
-
- org.apache.axiom.om.ds.AbstractOMDataSource
-
- org.apache.axis2.jaxws.message.impl.BlockImpl<OMElement,Void>
-
- org.apache.axis2.jaxws.message.databinding.impl.OMBlockImpl
-
- All Implemented Interfaces:
OMDataSource
,OMDataSourceExt
,Block<OMElement,Void>
,OMBlock
public class OMBlockImpl extends BlockImpl<OMElement,Void> implements OMBlock
OMBlockImpl Block with a business object that is an OMElement
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected OMElement
_getBOFromOM(OMElement om, Void busContext)
Default method for getting business object from OM.protected OMElement
_getOMFromBO(OMElement busObject, Void busContext)
protected XMLStreamReader
_getReaderFromBO(OMElement busObj, Void busContext)
Get an XMLStreamReader for the BusinessObject The derived Block must implement this methodprotected void
_outputFromBO(OMElement busObject, Void busContext, XMLStreamWriter writer)
Output BusinessObject contents to a Writer.void
close()
Object
getObject()
boolean
isDestructiveRead()
boolean
isDestructiveWrite()
boolean
isElementData()
-
Methods inherited from class org.apache.axis2.jaxws.message.impl.BlockImpl
_getBOFromBO, _outputFromOM, _outputFromReader, _postPivot_getXMLStreamReader, _postPivot_outputTo, copy, getBlockFactory, getBusinessContext, getBusinessObject, getOMElement, getParent, getQName, getReader, getXMLStreamReader, isBusinessObject, isConsumed, isQNameAvailable, outputTo, serialize, setConsumed, setParent, setQName, traceString
-
Methods inherited from class org.apache.axiom.om.ds.AbstractOMDataSource
getProperty, getXMLBytes, getXMLInputStream, hasProperty, serialize, serialize, setProperty
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.axis2.jaxws.message.Block
getBlockFactory, getBusinessContext, getBusinessObject, getOMElement, getParent, getQName, getXMLStreamReader, isConsumed, isQNameAvailable, outputTo, setParent, traceString
-
Methods inherited from interface org.apache.axiom.om.OMDataSource
getReader, serialize, serialize, serialize
-
Methods inherited from interface org.apache.axiom.om.OMDataSourceExt
copy, getProperty, getXMLBytes, getXMLInputStream, hasProperty, setProperty
-
-
-
-
Method Detail
-
_getReaderFromBO
protected XMLStreamReader _getReaderFromBO(OMElement busObj, Void busContext) throws XMLStreamException, WebServiceException
Description copied from class:BlockImpl
Get an XMLStreamReader for the BusinessObject The derived Block must implement this method- Specified by:
_getReaderFromBO
in classBlockImpl<OMElement,Void>
- Returns:
- Throws:
XMLStreamException
WebServiceException
-
_getBOFromOM
protected OMElement _getBOFromOM(OMElement om, Void busContext) throws XMLStreamException, WebServiceException
Description copied from class:BlockImpl
Default method for getting business object from OM. Derived classes may override this method to get the business object from a data source.- Specified by:
_getBOFromOM
in classBlockImpl<OMElement,Void>
- Returns:
- Business Object
- Throws:
XMLStreamException
WebServiceException
-
_getOMFromBO
protected OMElement _getOMFromBO(OMElement busObject, Void busContext) throws XMLStreamException, WebServiceException
- Overrides:
_getOMFromBO
in classBlockImpl<OMElement,Void>
- Returns:
- OMElement
- Throws:
XMLStreamException
WebServiceException
-
_outputFromBO
protected void _outputFromBO(OMElement busObject, Void busContext, XMLStreamWriter writer) throws XMLStreamException, WebServiceException
Description copied from class:BlockImpl
Output BusinessObject contents to a Writer. Derived classes must provide this implementation- Specified by:
_outputFromBO
in classBlockImpl<OMElement,Void>
- Throws:
XMLStreamException
WebServiceException
-
isElementData
public boolean isElementData()
- Specified by:
isElementData
in interfaceBlock<OMElement,Void>
- Returns:
- true if data is always an element; false if possibly mixed content or multiple elements
-
close
public void close()
- Specified by:
close
in interfaceOMDataSourceExt
- Overrides:
close
in classAbstractOMDataSource
-
getObject
public Object getObject()
- Specified by:
getObject
in interfaceOMDataSourceExt
- Overrides:
getObject
in classAbstractOMDataSource
-
isDestructiveRead
public boolean isDestructiveRead()
- Specified by:
isDestructiveRead
in interfaceOMDataSourceExt
-
isDestructiveWrite
public boolean isDestructiveWrite()
- Specified by:
isDestructiveWrite
in interfaceOMDataSourceExt
-
-