Interface Event
-
- All Known Implementing Classes:
DefaultEvent
public interface EventAn Event triggered at a certain stage in the mapping process
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassMapgetClassMap()Returns the classmap being used by mapperObjectgetDestinationObject()Returns destination being mappedObjectgetDestinationValue()Returns destination value being mappedFieldMapgetFieldMap()Returns the fieldmap being used by mapperObjectgetSourceObject()Returns the source being mappedEventTypesgetType()Returns the type of event
-
-
-
Method Detail
-
getType
EventTypes getType()
Returns the type of event- Returns:
- type of event
-
getClassMap
ClassMap getClassMap()
Returns the classmap being used by mapper- Returns:
- classmap being used by mapper
-
getFieldMap
FieldMap getFieldMap()
Returns the fieldmap being used by mapper- Returns:
- fieldmap being used by mapper
-
getSourceObject
Object getSourceObject()
Returns the source being mapped- Returns:
- source being mapped
-
getDestinationObject
Object getDestinationObject()
Returns destination being mapped- Returns:
- destination being mapped
-
getDestinationValue
Object getDestinationValue()
Returns destination value being mapped- Returns:
- destination value being mapped
-
-