org.dozer
Interface DozerEventListener
public interface DozerEventListener
Public event listener interface. By implementing the DozerEventListener interface Dozer allows you to listen to 4
different events: mappingStarted, mappingFinished, preWritingDestinationValue, postWritingDestinationValue.
A DozerEvent object is passed into these callback methods which stores information about the ClassMap, FieldMap,
Source object, destination object, and destination value. This will allow you to extend dozer and manipulate mapped
objects at run-time.
http://dozer.sourceforge.net/documentation/events.html
- Author:
- garsombke.franz
mappingStarted
void mappingStarted(DozerEvent event)
preWritingDestinationValue
void preWritingDestinationValue(DozerEvent event)
postWritingDestinationValue
void postWritingDestinationValue(DozerEvent event)
mappingFinished
void mappingFinished(DozerEvent event)
Copyright © 2005-2011 dozer. All Rights Reserved.