- java.lang.Object
-
- javax.xml.bind.Unmarshaller.Listener
-
- Enclosing interface:
- Unmarshaller
public abstract static class Unmarshaller.Listener extends Object
Register an instance of an implementation of this class withUnmarshaller
to externally listen for unmarshal events. This class enables pre and post processing of an instance of a JAXB mapped class as XML data is unmarshalled into it. The event callbacks are called when unmarshalling XML content into a JAXBElement instance or a JAXB mapped class that represents a complex type definition. The event callbacks are not called when unmarshalling to an instance of a Java datatype that represents a simple type definition. External listener is one of two different mechanisms for defining unmarshal event callbacks. See Unmarshal Event Callbacks for an overview. (@link #setListener(Listener)} (@link #getListener()}- Since:
- JAXB2.0
-
-
Constructor Summary
Constructors Constructor and Description Unmarshaller.Listener()
-
Method Summary
Methods Modifier and Type Method and Description void
afterUnmarshal(Object target, Object parent)
Callback method invoked after unmarshalling XML data into target.void
beforeUnmarshal(Object target, Object parent)
Callback method invoked before unmarshalling into target.
-
-
-
Method Detail
-
beforeUnmarshal
public void beforeUnmarshal(Object target, Object parent)
Callback method invoked before unmarshalling into target. This method is invoked immediately after target was created and before the unmarshalling of this object begins. Note that if the class of target defines its own beforeUnmarshal method, the class specific callback method is invoked before this method is invoked.- Parameters:
target
- non-null instance of JAXB mapped class prior to unmarshalling into it.parent
- instance of JAXB mapped class that will eventually reference target. null when target is root element.
-
afterUnmarshal
public void afterUnmarshal(Object target, Object parent)
Callback method invoked after unmarshalling XML data into target. This method is invoked after all the properties (except IDREF) are unmarshalled into target, but before target is set into its parent object. Note that if the class of target defines its own afterUnmarshal method, the class specific callback method is invoked before this method is invoked.- Parameters:
target
- non-null instance of JAXB mapped class prior to unmarshalling into it.parent
- instance of JAXB mapped class that will reference target. null when target is root element.
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/xml/bind/Unmarshaller.Listener.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.