Interface TableMappingModificationContext<ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>
-
public interface TableMappingModificationContext<ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>Context to modify an existingTableMapping.- Since:
- 4.5.0
- See Also:
TableMappingModifier.modify(TableMappingModificationContext)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description STgetSourceTable()Returns the source table in the table mapping.TTgetTargetTable()Returns the target table in the table mapping.<S extends MappingStep>
voidmodifyStep(MappingStepSelector<S> selector, java.util.function.Consumer<S> stepConfig)Modifies a transformation step in the table mapping.
-
-
-
Method Detail
-
getSourceTable
ST getSourceTable()
Returns the source table in the table mapping.
-
getTargetTable
TT getTargetTable()
Returns the target table in the table mapping.
-
modifyStep
<S extends MappingStep> void modifyStep(MappingStepSelector<S> selector, java.util.function.Consumer<S> stepConfig) throws DataIntegrationException
Modifies a transformation step in the table mapping.- Throws:
DataIntegrationException
-
-