Module eclipselink

Class JAXBUnmarshalListener

  • All Implemented Interfaces:
    org.eclipse.persistence.internal.oxm.Unmarshaller.Listener, XMLUnmarshalListener

    public class JAXBUnmarshalListener
    extends Object
    implements XMLUnmarshalListener
    INTERNAL:

    Purpose:Provide a wrapper for a JAXB 2.0 Unmarshal Listener that implements XMLUnmarshalListener

    Responsibilities:

    • Implement the XMLUnmarshalListener API
    • Delegate event callbacks to the wrapped Listener instance
    • Perform JAXB 2.0 Class-Based unmarshal event callbacks
    See Also:
    Marshaller.Listener, XMLMarshalListener
    Author:
    mmacivor
    Since:
    Oracle TopLink 11.1.1.0.0
    • Constructor Detail

      • JAXBUnmarshalListener

        public JAXBUnmarshalListener​(jakarta.xml.bind.Unmarshaller unmarshaller)
    • Method Detail

      • setListener

        public void setListener​(jakarta.xml.bind.Unmarshaller.Listener jaxbListener)
      • getListener

        public jakarta.xml.bind.Unmarshaller.Listener getListener()
      • beforeUnmarshal

        public void beforeUnmarshal​(Object target,
                                    Object parent)
        Description copied from interface: org.eclipse.persistence.internal.oxm.Unmarshaller.Listener
        Event that will be called before objects are unmarshalled.
        Specified by:
        beforeUnmarshal in interface org.eclipse.persistence.internal.oxm.Unmarshaller.Listener
        Parameters:
        target - A newly created instance of the object to be unmarshalled.
        parent - the owning object of the object that will be unmarshalled. This may be null.
      • afterUnmarshal

        public void afterUnmarshal​(Object target,
                                   Object parent)
        Description copied from interface: org.eclipse.persistence.internal.oxm.Unmarshaller.Listener
        Event that will be called after objects are unmarshalled.
        Specified by:
        afterUnmarshal in interface org.eclipse.persistence.internal.oxm.Unmarshaller.Listener
        Parameters:
        target - the object that was unmarshalled.
        parent - the owning object of the object that was unmarshalled. This may be null.
      • setClassBasedUnmarshalEvents

        public void setClassBasedUnmarshalEvents​(Map events)