|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.axiom.om.ds.AbstractOMDataSource
public abstract class AbstractOMDataSource
Base class for OMDataSourceExt implementations. This class should only be used by data
sources that can equally well produce an XMLStreamReader and have a meaningful
implementation of OMDataSource.serialize(XMLStreamWriter). Most implementations should
actually use AbstractPullOMDataSource or AbstractPushOMDataSource.
| Field Summary |
|---|
| Fields inherited from interface org.apache.axiom.om.OMDataSourceExt |
|---|
LOSSY_PREFIX |
| Constructor Summary | |
|---|---|
AbstractOMDataSource()
|
|
| Method Summary | |
|---|---|
void |
close()
Close the DataSource and free its resources. |
OMDataSourceExt |
copy()
Create a copy of the data source. |
Object |
getObject()
Get the object that backs this data source. |
Object |
getProperty(String key)
Query a property stored on the OMDataSource |
byte[] |
getXMLBytes(String encoding)
Returns a byte[] representing the xml data |
InputStream |
getXMLInputStream(String encoding)
Returns a InputStream representing the xml data |
boolean |
hasProperty(String key)
Returns true if property is set |
void |
serialize(OutputStream out,
OMOutputFormat format)
Serializes element data directly to stream. |
void |
serialize(Writer writer,
OMOutputFormat format)
Serializes element data directly to writer. |
Object |
setProperty(String key,
Object value)
Set a property on the OMDataSource |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.apache.axiom.om.OMDataSourceExt |
|---|
isDestructiveRead, isDestructiveWrite |
| Methods inherited from interface org.apache.axiom.om.OMDataSource |
|---|
getReader, serialize |
| Constructor Detail |
|---|
public AbstractOMDataSource()
| Method Detail |
|---|
public final Object getProperty(String key)
OMDataSourceExt
getProperty in interface OMDataSourceExtpublic final boolean hasProperty(String key)
OMDataSourceExt
hasProperty in interface OMDataSourceExt
public final Object setProperty(String key,
Object value)
OMDataSourceExt
setProperty in interface OMDataSourceExt
public final void serialize(OutputStream out,
OMOutputFormat format)
throws XMLStreamException
OMDataSource
It is assumed that this method consumes the content (i.e. destroys the backing object) unless
the data source also implements OMDataSourceExt and
OMDataSourceExt.isDestructiveWrite() returns false.
serialize in interface OMDataSourceout - destination stream for element XML textformat - Output format information. The implementation must use this information to choose
the correct character set encoding when writing to the output stream. This
parameter must not be null.
XMLStreamException
public final void serialize(Writer writer,
OMOutputFormat format)
throws XMLStreamException
OMDataSource
It is assumed that this method consumes the content (i.e. destroys the backing object) unless
the data source also implements OMDataSourceExt and
OMDataSourceExt.isDestructiveWrite() returns false.
serialize in interface OMDataSourcewriter - destination writer for element XML textformat - output format information (null if none; may be ignored if not
supported by data binding even if supplied)
XMLStreamException
public final byte[] getXMLBytes(String encoding)
throws UnsupportedEncodingException
OMDataSourceExt
getXMLBytes in interface OMDataSourceExtencoding - String encoding of InputStream
UnsupportedEncodingExceptionOMDataSourceExt.getXMLInputStream(String)
public final InputStream getXMLInputStream(String encoding)
throws UnsupportedEncodingException
OMDataSourceExt
getXMLInputStream in interface OMDataSourceExtencoding - String encoding of InputStream
UnsupportedEncodingExceptionpublic Object getObject()
OMDataSourceExtOMSourcedElement.getObject(Class) instead.
Data sources that support non destructive read/write should return the object from which the XML is produced. Data sources with destructive read/write should return a non null value only if the backing object has not been consumed yet (even partially).
getObject in interface OMDataSourceExtnull if the data source has no backing object or
if the backing object can't be accessed in a safe waypublic void close()
OMDataSourceExt
close in interface OMDataSourceExtpublic OMDataSourceExt copy()
OMDataSourceExtOMInformationItem.clone(OMCloneOptions) when the
OMCloneOptions.isCopyOMDataSources() option is enabled. If the data source is
immutable and stateless, then it may return a reference to itself instead of creating a new
data source instance.
copy in interface OMDataSourceExtnull if the data source can't be copied
(e.g. because it is destructive)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||