Class BinderImpl<XmlNode>


  • public class BinderImpl<XmlNode>
    extends Binder<XmlNode>
    Implementation of Binder. TODO: investigate how much in-place unmarshalling is implemented - some preliminary work is there. Probably buggy. TODO: work on the marshaller side.
    Author:
    Kohsuke Kawaguchi ([email protected])
    • Method Detail

      • updateJAXB

        public Object updateJAXB​(XmlNode xmlNode)
                          throws JAXBException
        Description copied from class: Binder
        Takes an XML node and updates its associated JAXB object and its descendants.

        This operation can be thought of as an "in-place" unmarshalling. The difference is that instead of creating a whole new JAXB tree, this operation updates an existing tree, reusing as much JAXB objects as possible.

        As a side-effect, this operation updates the association between XML nodes and JAXB objects.

        Specified by:
        updateJAXB in class Binder<XmlNode>
        Returns:
        Returns the updated JAXB object. Typically, this is the same object that was returned from earlier Binder.marshal(Object,Object) or Binder.updateJAXB(Object) method invocation, but it maybe a different object, for example when the name of the XML element has changed.
        Throws:
        JAXBException - If any unexpected problem occurs updating corresponding JAXB mapped content.
      • setSchema

        public void setSchema​(Schema schema)
        Description copied from class: Binder
        Specifies whether marshal, unmarshal and update methods performs validation on their XML content.
        Specified by:
        setSchema in class Binder<XmlNode>
        Parameters:
        schema - set to null to disable validation.
        See Also:
        Unmarshaller.setSchema(Schema)
      • getXMLNode

        public XmlNode getXMLNode​(Object jaxbObject)
        Description copied from class: Binder
        Gets the XML element associated with the given JAXB object.

        Once a JAXB object tree is associated with an XML fragment, this method enables navigation between the two trees.

        An association between an XML element and a JAXB object is established by the bind methods and the update methods. Note that this association is partial; not all XML elements have associated JAXB objects, and not all JAXB objects have associated XML elements.

        Specified by:
        getXMLNode in class Binder<XmlNode>
        Parameters:
        jaxbObject - An instance that is reachable from a prior call to a bind or update method that returned a JAXB object tree.
        Returns:
        null if the specified JAXB object is not known to this Binder, or if it is not associated with an XML element.
      • getJAXBNode

        public Object getJAXBNode​(XmlNode xmlNode)
        Description copied from class: Binder
        Gets the JAXB object associated with the given XML element.

        Once a JAXB object tree is associated with an XML fragment, this method enables navigation between the two trees.

        An association between an XML element and a JAXB object is established by the unmarshal, marshal and update methods. Note that this association is partial; not all XML elements have associated JAXB objects, and not all JAXB objects have associated XML elements.

        Specified by:
        getJAXBNode in class Binder<XmlNode>
        Returns:
        null if the specified XML node is not known to this Binder, or if it is not associated with a JAXB object.
      • updateXML

        public XmlNode updateXML​(Object jaxbObject)
                          throws JAXBException
        Description copied from class: Binder
        Takes an JAXB object and updates its associated XML node and its descendants.

        This is a convenience method of:

         updateXML( jaxbObject, getXMLNode(jaxbObject));
         
        Specified by:
        updateXML in class Binder<XmlNode>
        Throws:
        JAXBException - If any unexpected problem occurs updating corresponding XML content.
      • updateXML

        public XmlNode updateXML​(Object jaxbObject,
                                 XmlNode xmlNode)
                          throws JAXBException
        Description copied from class: Binder
        Changes in JAXB object tree are updated in its associated XML parse tree.

        This operation can be thought of as an "in-place" marshalling. The difference is that instead of creating a whole new XML tree, this operation updates an existing tree while trying to preserve the XML as much as possible.

        For example, unknown elements/attributes in XML that were not bound to JAXB will be left untouched (whereas a marshalling operation would create a new tree that doesn't contain any of those.)

        As a side-effect, this operation updates the association between XML nodes and JAXB objects.

        Specified by:
        updateXML in class Binder<XmlNode>
        Parameters:
        jaxbObject - root of potentially modified JAXB object tree
        xmlNode - root of update target XML parse tree
        Returns:
        Returns the updated XML node. Typically, this is the same node you passed in as xmlNode, but it maybe a different object, for example when the tag name of the object has changed.
        Throws:
        JAXBException - If any unexpected problem occurs updating corresponding XML content.
      • setEventHandler

        public void setEventHandler​(ValidationEventHandler handler)
                             throws JAXBException
        Description copied from class: Binder
        Allow an application to register a ValidationEventHandler.

        The ValidationEventHandler will be called by the JAXB Provider if any validation errors are encountered during calls to any of the Binder unmarshal, marshal and update methods.

        Calling this method with a null parameter will cause the Binder to revert back to the default default event handler.

        Specified by:
        setEventHandler in class Binder<XmlNode>
        Parameters:
        handler - the validation event handler
        Throws:
        JAXBException - if an error was encountered while setting the event handler
      • getEventHandler

        public ValidationEventHandler getEventHandler()
        Description copied from class: Binder
        Return the current event handler or the default event handler if one hasn't been set.
        Specified by:
        getEventHandler in class Binder<XmlNode>
        Returns:
        the current ValidationEventHandler or the default event handler if it hasn't been set
      • getProperty

        public Object getProperty​(String name)
                           throws PropertyException
        Description copied from class: Binder
        Get the particular property in the underlying implementation of Binder. This method can only be used to get one of the standard JAXB defined unmarshal/marshal properties or a provider specific property for binder, unmarshal or marshal. Attempting to get an undefined property will result in a PropertyException being thrown. See Supported Unmarshal Properties and Supported Marshal Properties.
        Specified by:
        getProperty in class Binder<XmlNode>
        Parameters:
        name - the name of the property to retrieve
        Returns:
        the value of the requested property
        Throws:
        PropertyException - when there is an error retrieving the given property or value property name
      • setProperty

        public void setProperty​(String name,
                                Object value)
                         throws PropertyException
        Description copied from class: Binder
        Set the particular property in the underlying implementation of Binder. This method can only be used to set one of the standard JAXB defined unmarshal/marshal properties or a provider specific property for binder, unmarshal or marshal. Attempting to set an undefined property will result in a PropertyException being thrown. See Supported Unmarshal Properties and Supported Marshal Properties.
        Specified by:
        setProperty in class Binder<XmlNode>
        Parameters:
        name - the name of the property to be set. This value can either be specified using one of the constant fields or a user supplied string.
        value - the value of the property to be set
        Throws:
        PropertyException - when there is an error processing the given property or value