Interface TableMappingResult


  • public interface TableMappingResult
    Result for a TableMapping after performing a data integration execution.
    Since:
    4.1.0
    • Method Detail

      • getSourceTable

        Table getSourceTable()
        Returns the source table.
        Since:
        4.2.0
      • getTargetTable

        Table getTargetTable()
        Returns the target table.
        Since:
        4.2.0
      • getNumberOfProcessedRecords

        int getNumberOfProcessedRecords()
        Returns the total number of inserted, updated, deleted and unchanged records.
      • getNumberOfInsertedRecords

        int getNumberOfInsertedRecords()
        Returns the number of inserted records.
      • getNumberOfUpdatedRecords

        int getNumberOfUpdatedRecords()
        Returns the number of updated records.
      • getNumberOfDeletedRecords

        int getNumberOfDeletedRecords()
        Returns the number of deleted records.
      • getNumberOfFailedRecords

        int getNumberOfFailedRecords()
        Returns the number of failed records.
      • getNumberOfUnchangedRecords

        int getNumberOfUnchangedRecords()
        Returns the number of unchanged records.
      • getErrorMessages

        java.util.Iterator<com.onwbp.base.text.UserMessage> getErrorMessages()
        Returns the error messages.
      • hasFatalError

        boolean hasFatalError()
        Returns true if this result has a fatal error.
        Since:
        4.5.0
      • getFatalErrorMessage

        com.onwbp.base.text.UserMessage getFatalErrorMessage()
        Returns the fatal error or null.
        Since:
        4.5.0
        See Also:
        hasFatalError()