| Package | Description |
|---|---|
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
Map<TableMapping,FieldMapperDefinition> |
SQLImportConfigurationSpec.getFieldMapperDefinitions()
Returns the map of the
FieldMapperDefinition implementations and
TableMapping instance as the key parameter. |
Map<TableMapping,FieldMapperDefinition> |
SQLExportConfigurationSpec.getFieldMapperDefinitions()
Returns the map of the
FieldMapperDefinition implementations and a
TableMapping instance as the key parameter. |
| Modifier and Type | Method and Description |
|---|---|
void |
SQLImportConfigurationSpec.setFieldMapperDefinitions(Map<TableMapping,FieldMapperDefinition> fieldMapperDefinitions)
Sets a map of the
FieldMapperDefinition implementations and
TableMapping instance as the key parameter. |
void |
SQLExportConfigurationSpec.setFieldMapperDefinitions(Map<TableMapping,FieldMapperDefinition> fieldMapperDefinitions)
Sets a map of the
FieldMapperDefinition implementations and a
TableMapping instance as the key parameter. |
| Modifier and Type | Field and Description |
|---|---|
static FieldMapperDefinition |
FieldMapperDefinition.MAP_LABEL_AND_TYPE_WITH_INSENSITIVE
A
FieldMapperDefinition that maps the column's label and data type without using case-sensitive comparison. |
static FieldMapperDefinition |
FieldMapperDefinition.MAP_LABEL_AND_TYPE_WITH_SENSITIVE
A
FieldMapperDefinition that maps the column's label and data type using case-sensitive comparison. |
static FieldMapperDefinition |
FieldMapperDefinition.MAP_LABEL_WITH_INSENSITIVE
A
FieldMapperDefinition that maps the column's label without using case-sensitive comparison. |
static FieldMapperDefinition |
FieldMapperDefinition.MAP_LABEL_WITH_SENSITIVE
A
FieldMapperDefinition that maps the column's label using case-sensitive comparison. |
static FieldMapperDefinition |
FieldMapperDefinition.MAP_NAME_AND_TYPE_WITH_INSENSITIVE
A
FieldMapperDefinition that maps the column's name and data type without using case-sensitive comparison. |
static FieldMapperDefinition |
FieldMapperDefinition.MAP_NAME_AND_TYPE_WITH_SENSITIVE
A
FieldMapperDefinition that maps the column's name and data type using case-sensitive comparison. |
static FieldMapperDefinition |
FieldMapperDefinition.MAP_NAME_WITH_INSENSITIVE
A
FieldMapperDefinition that maps the column's name without using case-sensitive comparison. |
static FieldMapperDefinition |
FieldMapperDefinition.MAP_NAME_WITH_SENSITIVE
A
FieldMapperDefinition that maps the column's name using case-sensitive comparison. |
| Modifier and Type | Method and Description |
|---|---|
static void |
FieldMapperCatalog.add(FieldMapperDefinition fieldMapperDefinition)
Registers the specified custom mapping field.
|