Package | Description |
---|---|
com.orchestranetworks.addon.dint |
Provides classes and interfaces to execute a data integration task.
|
com.orchestranetworks.addon.dint.mapping |
Provides classes and interfaces for creating a mapping specification between source and target tables.
|
com.orchestranetworks.addon.dint.schema |
Provides classes and interfaces that represent fields and tables for the supported data source.
|
Modifier and Type | Method and Description |
---|---|
Table |
TableMappingResult.getSourceTable()
Returns the source table.
|
Table |
TableMappingResult.getTargetTable()
Returns the target table.
|
Modifier and Type | Class and Description |
---|---|
class |
SourceTable<T extends Table<F>,F extends Field>
Represents a source table in a
TableMapping . |
class |
TargetTable<T extends Table<F>,F extends Field>
Represents a target table in a
TableMapping . |
Modifier and Type | Method and Description |
---|---|
static <ST extends Table<SF>,SF extends Field,TT extends Table<TF>,TF extends Field> |
TableMapping.of(SourceTable<ST,SF> source,
TargetTable<TT,TF>... targets)
Creates a new instance from a source table and one or many target tables.
|
static <ST extends Table<SF>,SF extends Field,TT extends Table<TF>,TF extends Field> |
TableMapping.of(SourceTable<ST,SF> source,
TargetTable<TT,TF>... targets)
Creates a new instance from a source table and one or many target tables.
|
Modifier and Type | Interface and Description |
---|---|
interface |
CSVTable
Table structure in a CSV data source.
|
interface |
EBXTable
Table structure (an
AdaptationTable ) in an EBX data source. |
interface |
ExcelTable
Table structure (a sheet) in an Excel data source.
|