Uses of Class
com.orchestranetworks.addon.dint.DataIntegrationException
Package
Description
Provides classes and interfaces to execute a data integration task.
Provides classes for source and target table specifications.
Provides classes and interfaces for creating a mapping specification between source and target tables.
Provides classes and interfaces to define and register transformations.
-
Uses of DataIntegrationException in com.orchestranetworks.addon.dint
Modifier and TypeMethodDescriptionabstract DataIntegrationExecutionResults
DataIntegrationExecutor.execute
(DataIntegrationSpec spec) Performs a data integration task based on the specification.abstract DataIntegrationExecutionResults
DataIntegrationExecutor.execute
(CSVExportTemplateSpec spec) Performs a CSV export task with a given template.abstract DataIntegrationExecutionResults
DataIntegrationExecutor.execute
(CSVImportTemplateSpec spec) Performs a CSV import task with a given template.abstract DataIntegrationExecutionResults
DataIntegrationExecutor.execute
(EBXTransferTemplateSpec spec) Performs an EBX transfer task with a given template.abstract DataIntegrationExecutionResults
DataIntegrationExecutor.execute
(ExcelExportTemplateSpec spec) Performs an Excel export task with a given template.abstract DataIntegrationExecutionResults
DataIntegrationExecutor.execute
(ExcelImportTemplateSpec spec) Performs an Excel import task with a given template.abstract DataIntegrationExecutionResults
DataIntegrationExecutor.execute
(SQLExportTemplateSpec spec) Performs a SQL export task with a given template.abstract DataIntegrationExecutionResults
DataIntegrationExecutor.execute
(SQLImportTemplateSpec spec) Performs an SQL import task with a given template. -
Uses of DataIntegrationException in com.orchestranetworks.addon.dint.dataconnector.spec
Modifier and TypeMethodDescriptionExcelSourceTableSpec.ExcelSourceTableSpecBuilder.setStartColumn
(int startColumn) Sets the start column.ExcelSourceTableSpec.ExcelSourceTableSpecBuilder.setStartRow
(int startRow) Sets the start row. -
Uses of DataIntegrationException in com.orchestranetworks.addon.dint.mapping
Modifier and TypeMethodDescriptionvoid
TableMappingModifier.modify
(TableMappingModificationContext<ST, TT> context) Modifies the table mapping specified by the context.<S extends MappingStep>
voidTableMappingModificationContext.modifyStep
(MappingStepSelector<S> selector, Consumer<S> stepConfig) Modifies a transformation step in the table mapping.static CSVSourceTable
CSVSourceTable.newInstance
(CSVSourceTableSpec spec) Creates a new instance.static CSVTargetTable
CSVTargetTable.newInstance
(CSVTargetTableSpec spec) Creates a new instance.static EBXSourceTable
EBXSourceTable.newInstance
(EBXSourceTableSpec spec) Creates a new instance.static EBXTargetTable
EBXTargetTable.newInstance
(EBXTargetTableSpec spec) Creates a new instance.static ExcelSourceTable
ExcelSourceTable.newInstance
(ExcelSourceTableSpec spec) Creates a new instance.static ExcelTargetTable
ExcelTargetTable.newInstance
(ExcelTargetTableSpec spec) Creates a new instance.static SQLSourceTable
SQLSourceTable.newInstance
(SQLSourceTableSpec spec) Creates a new instance.static SQLTargetTable
SQLTargetTable.newInstance
(SQLTargetTableSpec spec) Creates a new instance. -
Uses of DataIntegrationException in com.orchestranetworks.addon.dint.transformation
Modifier and TypeMethodDescriptiondefault void
TransformationFunction.setup
(TransformationConfigurationContext context) Allows retrieving parameters fromTransformationConfigurationContext
to set up for theTransformationFunction.transform(TransformationExecutionContext)
method.TransformationFunction.transform
(TransformationExecutionContext<I> context) Performs the transformation.