Class JaxbUtil

java.lang.Object
oracle.bpel.services.common.util.JaxbUtil

public class JaxbUtil extends Object
Since:
release specific (what release of product did this appear in)
  • Field Details

  • Constructor Details

    • JaxbUtil

      public JaxbUtil()
  • Method Details

    • getNamespaceDeclaration

      public static Map getNamespaceDeclaration(oracle.xml.jaxb.JaxbNode node) throws javax.xml.bind.JAXBException
      Get the namespaces defined at a particular JAXB node
      Parameters:
      node - a JaxbNode node
      Returns:
      a Map containing the namespaces declared
      Throws:
      javax.xml.bind.JAXBException - if an error occurs
    • setNamespaceDeclaration

      public static void setNamespaceDeclaration(oracle.xml.jaxb.JaxbNode node, String prefix, String uri) throws javax.xml.bind.JAXBException
      Set namespace declaration in this JaxbNode
      Parameters:
      node - a JaxbNode node
      prefix - The namespace prefix
      uri - The namespace URI
      Throws:
      javax.xml.bind.JAXBException - if an error occurs
    • setNamespaceDeclaration

      public static void setNamespaceDeclaration(oracle.xml.jaxb.JaxbNode node, Map namespaceMap) throws javax.xml.bind.JAXBException
      Set namespace declaration in this JaxbNode
      Parameters:
      node - a JaxbNode node
      namespaceMap - Map containing namespace declaration. The key should be just the prefix and the value should be the namespace URI
      Throws:
      javax.xml.bind.JAXBException - if an error occurs
    • getValidationEventMessage

      public static String getValidationEventMessage(javax.xml.bind.ValidationEvent e)
      Get the string message for a ValidationEvent
      Parameters:
      e - A ValidationEvent value
      Returns:
      String The string message for a ValidationEvent
    • unmarshallJAXBFromElem

      public static Object unmarshallJAXBFromElem(Element elem, String jaxbContextPath) throws javax.xml.bind.JAXBException
      Deprecated.
      Use context-path specific AbstractJaxbUtil implementation instead
      Creates a JAXB representation of the org.w3c.dom.Element.
      Parameters:
      elem - org.w3c.dom.Element containining an Element to unmarshall
      jaxbContextPath - path to Package containing appropriate JAXB classes that represent the Element
      Throws:
      Exception
      javax.xml.bind.JAXBException
    • unmarshallJAXBFromElem

      public static Object unmarshallJAXBFromElem(Element elem, String tagName, String jaxbContextPath) throws javax.xml.bind.JAXBException
      Deprecated.
      Use context-path specific AbstractJaxbUtil implementation instead
      Creates a JAXB representation of the org.w3c.dom.Element identified by tagName and element, located within the Element passed.
      Parameters:
      elem - org.w3c.dom.Element containining an Element to unmarshall
      tagName - String identifying Element
      jaxbContextPath - path to Package containing appropriate JAXB classes that represent the Element
      Returns:
      Object JAXB representation of object. Null if Element contains zero or many Elements matching tagName
      Throws:
      Exception
      javax.xml.bind.JAXBException
    • unmarshallJAXBFromElem

      public static Object unmarshallJAXBFromElem(Element elem, String tagName, String namespace, String jaxbContextPath) throws javax.xml.bind.JAXBException
      Deprecated.
      Use context-path specific AbstractJaxbUtil implementation instead
      Creates a JAXB representation of the org.w3c.dom.Element identified by tagName and element, located within the Element passed.
      Parameters:
      elem - org.w3c.dom.Element containining an Element to unmarshall
      tagName - String identifying Element
      namespace - String namespace of Element (if null, lookup will be by tagName only
      jaxbContextPath - path to Package containing appropriate JAXB classes that represent the Element
      Returns:
      Object JAXB representation of object. Null if Element contains zero or many Elements matching tagName and namespace
      Throws:
      Exception
      javax.xml.bind.JAXBException
    • clone

      public static Object clone(Serializable value) throws Exception
      Clone a (serializable JAXB) object.
      Parameters:
      value - A serializable (JAXB) object
      Returns:
      A clone (deep-copy) of the object
      Throws:
      Exception - In the case of a serialization/deserialization error