Interface MappingResults

All Superinterfaces:
Serializable
All Known Implementing Classes:
DefaultMappingResults

public interface MappingResults extends Serializable
Exposes information about the results of a mapping transaction.
Author:
Keith Donald
  • 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

      List<MappingResult> getResults(MappingResultsCriteria criteria)
      Get all results that meet the given result criteria.
      Parameters:
      criteria - the mapping result criteria