Interface TransferResult

  • All Superinterfaces:
    ImportResult, Result

    public interface TransferResult
    extends ImportResult
    Stores data results when transferring data into a table.
    Since:
    2.3.0
    • Method Detail

      • getDeletedRecords

        java.util.List<EBXRecordPrimaryKey> getDeletedRecords()
        Returns a list of the targeted deleted records' primary keys before data transfer.
        Since:
        2.4.0
      • getCreatedRecords

        java.util.Map<EBXRecordPrimaryKey,​EBXRecordPrimaryKey> getCreatedRecords()
        Returns a map between source and target record primary keys for created records.
        Since:
        2.4.0
      • getUpdatedRecords

        java.util.Map<EBXRecordPrimaryKey,​EBXRecordPrimaryKey> getUpdatedRecords()
        Returns a map between source and target record primary keys for updated records.
        Since:
        2.4.0