Interface Result

  • All Known Subinterfaces:
    ExportResult, ImportResult, TransferResult

    public interface Result
    Defines data results when executing data import, export, transfer from the source table to the target table.
    Since:
    2.3.0
    • Method Detail

      • getSourceTable

        Table getSourceTable()
        Returns the specified source table.
      • getTargetTable

        Table getTargetTable()
        Returns the specified target table.
      • getNumberOfProcessedRecords

        long getNumberOfProcessedRecords()
        Returns the number of records that have been processed.
      • getNumberOfInvalidRecords

        long getNumberOfInvalidRecords()
        Returns the number of records that are invalid.
      • getErrorMessages

        java.util.Map<java.lang.Integer,​com.onwbp.base.text.UserMessage> getErrorMessages()
        Returns the error messages when executing data import, export, transfer and the index of the source record as the key parameter.
      • getWarningMessages

        java.util.Iterator<com.onwbp.base.text.UserMessage> getWarningMessages()
        Returns the warning messages when executing data import, export, transfer.