Interface DataExchangeResult
- All Known Subinterfaces:
DataExchangeResult.CSVExport
,DataExchangeResult.CSVImport
,DataExchangeResult.SpreadsheetExport
,DataExchangeResult.SpreadsheetImport
,DataExchangeResult.SQLExport
,DataExchangeResult.SQLImport
,DataExchangeResult.Transfer
,DataExchangeResult.XMLExport
,DataExchangeResult.XMLImport
public interface DataExchangeResult
Stores data results when executing data import, export and transfer.
- Since:
- 2.3.0
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Stores data results when executing the CSV export.static interface
Stores data results when executing CSV import.static interface
Stores data results when executing Excel export.static interface
Stores data results when executing Excel import.static interface
Stores data results when executing SQL export.static interface
Stores data results when executing SQL import.static interface
Stores data results when executing a data transfer.static interface
Stores data results when executing XML export.static interface
Stores data results when executing XML import. -
Method Summary
Modifier and TypeMethodDescriptionIterator<com.onwbp.base.text.UserMessage>
Returns the error messages.Returns an iterator overResult
elements.Returns the specified source application.Returns the specified target application.Iterator<com.onwbp.base.text.UserMessage>
Returns the warning messages.
-
Method Details
-
getSourceApplication
CommonApplication getSourceApplication()Returns the specified source application. -
getTargetApplication
CommonApplication getTargetApplication()Returns the specified target application. -
getErrorMessages
Iterator<com.onwbp.base.text.UserMessage> getErrorMessages()Returns the error messages. -
getWarningMessages
Iterator<com.onwbp.base.text.UserMessage> getWarningMessages()Returns the warning messages. -
getResults
Returns an iterator overResult
elements. Each element stores a data result when transferring, importing, exporting data into a table.
-