Interface MappingResults
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
DefaultMappingResults
Exposes information about the results of a mapping transaction.
- Author:
- Keith Donald
-
Method Summary
Modifier and TypeMethodDescriptionA list of all the mapping results between the source and target.A list of all error results that occurred.getResults
(MappingResultsCriteria criteria) Get all results that meet the given result criteria.The source object that was mapped from.The target object that was mapped to.boolean
Whether some results were errors.
-
Method Details
-
getSource
Object getSource()The source object that was mapped from. -
getTarget
Object getTarget()The target object that was mapped to. -
getAllResults
List<MappingResult> getAllResults()A list of all the mapping results between the source and target. -
hasErrorResults
boolean hasErrorResults()Whether some results were errors. Returns true if mapping errors occurred. -
getErrorResults
List<MappingResult> getErrorResults()A list of all error results that occurred. -
getResults
Get all results that meet the given result criteria.- Parameters:
criteria
- the mapping result criteria
-