Class XmlObjectSource

java.lang.Object
com.bea.wli.sb.sources.XmlObjectSource
All Implemented Interfaces:
com.bea.wli.sb.sources.ContentTypeAwareSource, Source

public class XmlObjectSource extends Object implements Source, com.bea.wli.sb.sources.ContentTypeAwareSource
Apache XBean Source Source content is represented as an Apache XBean. The XBean may be typed and so may be accompanied by a SchemaType object and an associated ClassLoader. However, both of these are entirely optional and the XBean may be untyped XML.
  • Field Details

  • Constructor Details

    • XmlObjectSource

      public XmlObjectSource(org.apache.xmlbeans.XmlObject xml)
    • XmlObjectSource

      public XmlObjectSource(org.apache.xmlbeans.XmlObject xml, String contentType)
    • XmlObjectSource

      public XmlObjectSource(org.apache.xmlbeans.XmlObject xml, org.apache.xmlbeans.SchemaType type, ClassLoader cl)
  • Method Details

    • getXmlObject

      public org.apache.xmlbeans.XmlObject getXmlObject()
    • getContentType

      public String getContentType()
      Specified by:
      getContentType in interface com.bea.wli.sb.sources.ContentTypeAwareSource
    • getClassLoader

      public ClassLoader getClassLoader()
    • getSchemaType

      public org.apache.xmlbeans.SchemaType getSchemaType()
    • getInputStream

      public InputStream getInputStream(TransformOptions options)
      Description copied from interface: Source
      Returns streaming byte-baseed representation of the Source's content. The representation of that serialization is entirely up to the Source. Note that this method may involve an internal transformation, although it should not in any way change the underlying content.
      Specified by:
      getInputStream in interface Source
      Parameters:
      options - Options used to affect the serialization
      Returns:
      an InputStream for retrieving the serialized content
    • writeTo

      public void writeTo(OutputStream os, TransformOptions options) throws IOException
      Description copied from interface: Source
      Serializes the Source's content to a byte-based stream. The representation of that serialization is entirely up to the Source. The Source is forbidden from closing the provided OutputStream, although it is allowed to flush it. However, flushing the stream should be left to the caller, if possible.

      Note that this method may involve an internal transformation, although it should not in any way change the underlying content.

      Specified by:
      writeTo in interface Source
      Parameters:
      os - the OutputStream to which serialized content will be written
      options - TransformOptions used to affect the serialization
      Throws:
      IOException
    • createXmlOptions

      public static org.apache.xmlbeans.XmlOptions createXmlOptions(TransformOptions options)
      Utility class that creates a set of XmlOptions from a set of TransformOptions. This method takes into account a base-set of default XmlOptions.
      Parameters:
      options -
      Returns:
    • getInstance

      public static XmlObjectSource getInstance(String xmlText, TransformOptions options) throws TransformException
      Utility method that creates a new XmlObjectSource from a piece of text containing stringified XML.
      Parameters:
      xmlText -
      options -
      Returns:
      Throws:
      TransformException
    • getInstance

      public static XmlObjectSource getInstance(Node node, TransformOptions options) throws TransformException
      Utility method that creates a new XmlObjectSource from a DOM node.
      Parameters:
      node -
      options -
      Returns:
      Throws:
      TransformException
    • getInstance

      public static XmlObjectSource getInstance(InputStream in, TransformOptions options) throws TransformException
      Utility method that creates a new XmlObjectSource from an InputStream containing marshalled XML. This utility method will consume the provided InputStream.
      Parameters:
      in -
      options -
      Returns:
      Throws:
      TransformException
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • setMessageLength

      public void setMessageLength(long msgLength)
    • getMessageLength

      public long getMessageLength()