Class AbstractJaxbUtil

java.lang.Object
oracle.bpel.services.common.util.AbstractJaxbUtil
Direct Known Subclasses:
oracle.bpel.services.workflow.common.util.AbstractMLSJaxbUtil, RoutingSlipUtil, TaskAttributesUtil, TaskDisplayUtil

public abstract class AbstractJaxbUtil extends Object
  • Constructor Details

    • AbstractJaxbUtil

      public AbstractJaxbUtil()
  • Method Details

    • getJaxbContextString

      public abstract String getJaxbContextString()
      Get the Jaxb Context String
      Returns:
      a String value
    • getSchemaLocation

      public abstract String getSchemaLocation()
      Get the XSD location. This location is a resource location string like A.xsd, a/b/C.xsd The actual file location is determined from the classpath
      Returns:
      a String value
    • unmarshal

      public Object unmarshal(String xmlURI) throws javax.xml.bind.JAXBException, IOException
      Unmarshal xml in specified file to a object
      Parameters:
      xmlURI - The URI of XML file
      Returns:
      a object
      Throws:
      javax.xml.bind.JAXBException - if an error occurs
      IOException - if an error occurs
    • unmarshal

      public Object unmarshal(URL xmlURL) throws javax.xml.bind.JAXBException, IOException
      Unmarshal xml in specified file to a object
      Parameters:
      xmlURL - The URL of XML file
      Returns:
      a object
      Throws:
      javax.xml.bind.JAXBException - if an error occurs
      IOException - if an error occurs
    • unmarshal

      public Object unmarshal(InputStream inputStream) throws javax.xml.bind.JAXBException, IOException
      Unmarshal an input stream to a object
      Parameters:
      inputStream - The input stream
      Returns:
      a object
      Throws:
      javax.xml.bind.JAXBException - if an error occurs
      IOException - if an error occurs
    • unmarshal

      public Object unmarshal(byte[] data) throws javax.xml.bind.JAXBException, IOException
      Unmarshals a JAXB 1.0 object from a byte array.
      Parameters:
      data - byte[] containing the JAXB 1.0 object
      Returns:
      instance of the JAXB 1.0 object
      Throws:
      javax.xml.bind.JAXBException
      IOException
    • unmarshal

      public Object unmarshal(Node node) throws javax.xml.bind.JAXBException, IOException
      Unmarshal xml node in specified file to a object
      Parameters:
      node - The node
      Returns:
      a object
      Throws:
      javax.xml.bind.JAXBException - if an error occurs
      IOException - if an error occurs
    • marshal

      public void marshal(Object obj, String outputXMLLocation) throws javax.xml.bind.JAXBException, IOException
      Write a object to an XML file
      Parameters:
      obj - The object
      outputXMLLocation - The file location to write the XML
      Throws:
      javax.xml.bind.JAXBException - if an error occurs
      IOException - if an error occurs
    • marshal

      public void marshal(Object obj, OutputStream os) throws javax.xml.bind.JAXBException, IOException
      Write a object to an output stream
      Parameters:
      obj - The object
      os - The output stream
      Throws:
      javax.xml.bind.JAXBException - if an error occurs
      IOException - if an error occurs
    • marshal

      public void marshal(Object obj, Node node) throws javax.xml.bind.JAXBException
      Writes a JAXB object into a DOM Node
      Parameters:
      obj - a JAXB object associated with this JaxbUtil implementation
      node - A DOM node to write to. The node must be one that can accept children(Document, DocumentFragment, or Element)
      Throws:
      javax.xml.bind.JAXBException
    • marshal

      public byte[] marshal(Object obj) throws javax.xml.bind.JAXBException, IOException
      Write an object to a UTF-8 encoded byte array
      Parameters:
      obj - the JAXB 1.0 object to marshall
      Returns:
      a byte array containing the UTF-8 encoded representation of the JAXB object.
      Throws:
      javax.xml.bind.JAXBException
      IOException
    • schemaValidate

      public boolean schemaValidate(Object obj) throws javax.xml.bind.JAXBException
      Validate obj against its schema
      Parameters:
      obj - The object
      Returns:
      boolean true if obj is valid against its schema, false otherwise
      Throws:
      javax.xml.bind.JAXBException - if an error occurs
    • getSchemaValidationErrors

      public javax.xml.bind.ValidationEvent[] getSchemaValidationErrors(Object obj) throws javax.xml.bind.JAXBException
      Get the obj schema validation errors
      Parameters:
      obj - The JAXB object
      Returns:
      boolean true if obj is valid against its schema, false otherwise
      Throws:
      javax.xml.bind.JAXBException - if an error occurs
    • toString

      public String toString(Object t)
      Get a string verion of the obj
      Parameters:
      t - a Object value of type oracle.xml.jaxb.JaxbNode
      Returns:
      a String value
    • toElement

      public Element toElement(Object t)
      Get the element from the JAXB object
      Parameters:
      t - a Object value of type oracle.xml.jaxb.JaxbNode
      Returns:
      an Element value
    • getAbsoluteSchemaLocation

      public String getAbsoluteSchemaLocation()
      Returns absolute file path of the schema file
      Returns:
      the absolute file path
    • getClassLoader

      public ClassLoader getClassLoader()
      Gets the current thread context ClassLoader
      Returns:
      a ClassLoader value
    • createURL

      public static URL createURL(String urlString) throws IOException
      Creates an URL object from the specified urlString
      Parameters:
      urlString - a String value
      Returns:
      an URL value
      Throws:
      IOException - if an error occurs
    • cloneObject

      public Object cloneObject(Object t) throws Exception
      Clone the jaxb object
      Parameters:
      t - an Object value of type oracle.xml.jaxb.JaxbNode
      Returns:
      an Object value
      Throws:
      Exception - if an error occurs
    • cloneObject

      public Object cloneObject(Element element) throws Exception
      Clone the jaxb object element
      Parameters:
      element - an Element value
      Returns:
      an Object value
      Throws:
      Exception - if an error occurs