| Package | Description |
|---|---|
| com.orchestranetworks.addon.dex |
Classes and interfaces to call the {addon.label} import, export and transfer.
|
| com.orchestranetworks.addon.dex.configuration |
Classes and interfaces to define specifications for the import, export and transfer data services.
|
| Modifier and Type | Method and Description |
|---|---|
DataExchangeExportTableSpecBuilder |
DataExchangeExportTableSpecBuilder.setTableContent(com.onwbp.adaptation.AdaptationTable adaptationTable,
TableFilter tableFilter)
Specifies the table to be exported with filter.
|
| Modifier and Type | Method and Description |
|---|---|
Map<SQLTable,TableFilter> |
SQLImportConfigurationSpec.getSourceTableFilters()
Returns a map of table filters and an
SQLTable instance as the
key parameter. |
Map<CSVTable,TableFilter> |
CSVImportConfigurationSpec.getSourceTableFilters()
Returns a map of table filters and
EBXTable instance as the key parameter. |
Map<EBXTable,TableFilter> |
TransferConfigurationSpec.getSourceTableFilters()
Returns a map of table filters and a
Table instance as the key
parameter. |
Map<XMLTable,TableFilter> |
XMLImportConfigurationSpec.getSourceTableFilters()
Returns a map of table filters and a
Table instance as the key parameter. |
Map<EBXTable,TableFilter> |
SpreadsheetExportConfigurationSpec.getSourceTableFilters()
Returns a map of table filters and an
EBXTable instance as the
key parameter. |
Map<EBXTable,TableFilter> |
XMLExportConfigurationSpec.getSourceTableFilters()
Returns a map of table filters and an
EBXTable instance as the key parameter. |
Map<T,TableFilter> |
ConfigurationSpec.getSourceTableFilters()
Returns a map of source table filters and
Table instance as the key parameter. |
Map<EBXTable,TableFilter> |
SQLExportConfigurationSpec.getSourceTableFilters()
Returns a map of table filters and an instance of
EBXTable as the
key parameter. |
Map<SpreadsheetTable,TableFilter> |
SpreadsheetImportConfigurationSpec.getSourceTableFilters()
Returns a map of source table filters.
|
Map<EBXTable,TableFilter> |
CSVExportConfigurationSpec.getSourceTableFilters()
Returns a map of table filters and
EBXTable instance as the key parameter. |
| Constructor and Description |
|---|
CSVExportConfigurationSpec(com.onwbp.adaptation.AdaptationTable currentTable,
TableFilter tableFilter,
com.orchestranetworks.service.Session session) |
CSVExportConfigurationSpec(EBXTable sourceTable,
TableFilter tableFilter,
com.orchestranetworks.service.Session session) |
SpreadsheetExportConfigurationSpec(EBXTable sourceTable,
TableFilter tableFilter,
com.orchestranetworks.service.Session session) |
SQLExportConfigurationSpec(com.onwbp.adaptation.AdaptationTable currentTable,
TableFilter tableFilter,
JNDIDataSource jndiDataSource,
com.orchestranetworks.service.Session session)
Exports a table with filter and
JNDIDataSource outside of a
UIService. |
SQLExportConfigurationSpec(com.onwbp.adaptation.AdaptationTable currentTable,
TableFilter tableFilter,
String sqlDataSourceName,
com.orchestranetworks.service.Session session)
Exports a table with filter outside of a
UIService. |
SQLImportConfigurationSpec(com.onwbp.adaptation.AdaptationTable currentTable,
JNDIDataSource jndiDataSource,
SQLTable sqlTableOrView,
TableFilter tableFilter,
com.orchestranetworks.service.Session session)
Imports data with a filter and
JNDIDataSource outside of a
UIService. |
SQLImportConfigurationSpec(com.onwbp.adaptation.AdaptationTable currentTable,
String sqlDataSourceName,
SQLTable sqlTableOrView,
TableFilter tableFilter,
com.orchestranetworks.service.Session session)
Imports data from an SQL table with a filter outside of a
UIService. |
TransferConfigurationSpec(EBXTable sourceTable,
TableFilter tableFilter,
com.onwbp.adaptation.Adaptation targetDataset,
com.orchestranetworks.service.Session session)
Transfers a table with filter and is used outside of a
UIService. |
XMLExportConfigurationSpec(EBXTable sourceTable,
TableFilter tableFilter,
com.orchestranetworks.service.Session session)
Exports a table with filter and is used outside of a
UIService. |
| Constructor and Description |
|---|
SpreadsheetExportConfigurationSpec(com.onwbp.adaptation.Adaptation sourceDataset,
List<EBXTable> sourceTables,
Map<EBXTable,TableFilter> sourceTableFilters,
com.orchestranetworks.service.Session session) |
SQLExportConfigurationSpec(com.onwbp.adaptation.Adaptation dataset,
List<EBXTable> sourceTables,
Map<EBXTable,TableFilter> tableFilters,
JNDIDataSource jndiDataSource,
com.orchestranetworks.service.Session session)
Exports multiple tables with a filter and
JNDIDataSource outside of
a UIService. |
SQLExportConfigurationSpec(com.onwbp.adaptation.Adaptation dataset,
List<EBXTable> sourceTables,
Map<EBXTable,TableFilter> tableFilters,
String sqlDataSourceName,
com.orchestranetworks.service.Session session)
Exports multiple tables with a filter outside of a
UIService. |
TransferConfigurationSpec(com.onwbp.adaptation.Adaptation sourceDataset,
List<EBXTable> sourceTables,
Map<EBXTable,TableFilter> sourceTableFilters,
com.onwbp.adaptation.Adaptation targetDataset,
com.orchestranetworks.service.Session session)
Transfers multiple tables based on the filtered source tables outside of
a
UIService. |