Interface TransferResult
- All Superinterfaces:
ImportResult
,Result
Stores data results when transferring data into a table.
- Since:
- 2.3.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns a map between source and target record primary keys for created records.Returns a list of the targeted deleted records' primary keys before data transfer.Returns a map between source and target record primary keys for updated records.Methods inherited from interface com.orchestranetworks.addon.dex.result.ImportResult
getNumberOfCreatedRecords, getNumberOfDeletedRecords, getNumberOfUpdatedRecords
Methods inherited from interface com.orchestranetworks.addon.dex.result.Result
getErrorMessages, getNumberOfInvalidRecords, getNumberOfProcessedRecords, getSourceTable, getTargetTable, getWarningMessages
-
Method Details
-
getDeletedRecords
List<EBXRecordPrimaryKey> getDeletedRecords()Returns a list of the targeted deleted records' primary keys before data transfer.- Since:
- 2.4.0
-
getCreatedRecords
Map<EBXRecordPrimaryKey,EBXRecordPrimaryKey> getCreatedRecords()Returns a map between source and target record primary keys for created records.- Since:
- 2.4.0
-
getUpdatedRecords
Map<EBXRecordPrimaryKey,EBXRecordPrimaryKey> getUpdatedRecords()Returns a map between source and target record primary keys for updated records.- Since:
- 2.4.0
-