Interface Unmarshaller.Listener

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void afterUnmarshal​(java.lang.Object target, java.lang.Object parent)
      Event that will be called after objects are unmarshalled.
      void beforeUnmarshal​(java.lang.Object target, java.lang.Object parent)
      Event that will be called before objects are unmarshalled.
    • Method Detail

      • afterUnmarshal

        void afterUnmarshal​(java.lang.Object target,
                            java.lang.Object parent)
        Event that will be called after objects are unmarshalled.
        Parameters:
        target - the object that was unmarshalled.
        parent - the owning object of the object that was unmarshalled. This may be null.
      • beforeUnmarshal

        void beforeUnmarshal​(java.lang.Object target,
                             java.lang.Object parent)
        Event that will be called before objects are unmarshalled.
        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.