Interface Result
-
- All Known Subinterfaces:
ExportResult,ImportResult,TransferResult
public interface ResultDefines data results when executing data import, export, transfer from the source table to the target table.- Since:
- 2.3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.longgetNumberOfInvalidRecords()Returns the number of records that are invalid.longgetNumberOfProcessedRecords()Returns the number of records that have been processed.TablegetSourceTable()Returns the specified source table.TablegetTargetTable()Returns the specified target table.java.util.Iterator<com.onwbp.base.text.UserMessage>getWarningMessages()Returns the warning messages when executing data import, export, transfer.
-
-
-
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.
-
-