Package | Description |
---|---|
com.orchestranetworks.addon.dex.common.generation |
Classes and interfaces used to generate tables, fields and mappings for the XML and SQL import, export and transfer data services.
|
com.orchestranetworks.addon.dex.configuration |
Classes and interfaces to define specifications for the import, export and transfer data services.
|
com.orchestranetworks.addon.dex.mapping |
Classes and interfaces to configure mapping between source and target applications.
|
com.orchestranetworks.addon.dex.result |
Classes and interfaces to define a result when executing data import, export and transfer.
|
com.orchestranetworks.addon.dex.transformation |
Classes and interfaces to call {addon.label} transformation
functions for the import, export and transfer data services.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ApplicationMappingHelper<SC extends Field,TC extends Field,T extends Table<SC>>
Provides the methods to get
ApplicationMapping . |
interface |
TableGeneration<F extends Field,T extends Table<F>>
Provides the methods to generate a
TableGenerationResult instance. |
class |
TableGenerationResult<C extends Field,T extends Table<C>>
Defines table generation results.
|
interface |
TableHelper<F extends Field,T extends Table<F>,S extends TableHelperSpec>
Provides the methods to get the
Table declared in the {addon.label}
dataset. |
Modifier and Type | Interface and Description |
---|---|
interface |
ConfigurationSpec<T extends Table>
Specifies the configuration used for data import, export and transfer.
|
interface |
ExportConfigurationSpec<T extends Table>
Defines the configuration used for data export.
|
class |
FileImportConfigurationSpec<T extends Table>
Specifies the configuration used when importing data from a file.
|
interface |
ImportConfigurationSpec<T extends Table>
Specifies the configuration used for data import.
|
Modifier and Type | Class and Description |
---|---|
class |
CSVTable
Specifies the configuration for a CSV table.
|
class |
EBXTable
Specifies the configuration used for an EBX® table.
|
class |
SpreadsheetTable
Defines the configuration used for a spreadsheet table.
|
class |
SQLTable
Defines the configuration for a table in an external database.
|
class |
XMLTable
Defines the configuration used for an XML table.
|
Modifier and Type | Method and Description |
---|---|
Table |
FieldMapperContext.getSourceTable()
Returns the source table.
|
Table<SC> |
TableMapping.getSourceTable()
Returns the specified source table.
|
Table<F> |
Record.getTable()
Returns the specified table which contains this record.
|
Table |
FieldMapperContext.getTargetTable()
Returns the target table.
|
Table<TC> |
TableMapping.getTargetTable()
Returns the specified target table.
|
Constructor and Description |
---|
TableMapping(Table<SC> sourceTable,
Table<TC> targetTable) |
TableMapping(Table<SC> sourceTable,
Table<TC> targetTable) |
TableMapping(Table<SC> sourceTable,
Table<TC> targetTable,
FieldMappingList<SC,TC> fieldMappingList) |
TableMapping(Table<SC> sourceTable,
Table<TC> targetTable,
FieldMappingList<SC,TC> fieldMappingList) |
Modifier and Type | Method and Description |
---|---|
Table |
Result.getSourceTable()
Returns the specified source table.
|
Table |
Result.getTargetTable()
Returns the specified target table.
|
Modifier and Type | Method and Description |
---|---|
Table |
TransformationConfigurationContext.getSourceTable()
Returns the source table.
|
Table |
TransformationConfigurationContext.getTargetTable()
Returns the target table.
|