Interface TransformationConfigurationContext
-
public interface TransformationConfigurationContextProvides configuration attributes for theTransformationimplementation that executes during import, export, or transfer.Life cycle
When import, export or transfer services are called:
- The specified class is instantiated only once for import, export or transfer.
- It is used in the method
Transformation.setup(TransformationConfigurationContext)of aTransformation.
- Since:
- 2.3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ParameterDefinition>getParameters()Returns the list of parameters.com.orchestranetworks.instance.RepositorygetRepository()Returns the current repository.ServiceTypegetServiceType()Returns the service type.com.orchestranetworks.service.SessiongetSession()Returns the current session context.CommonApplicationgetSourceApplication()Returns the source application.TablegetSourceTable()Returns the source table.CommonApplicationgetTargetApplication()Returns the target application.TablegetTargetTable()Returns the target table.
-
-
-
Method Detail
-
getParameters
java.util.List<ParameterDefinition> getParameters()
Returns the list of parameters.
-
getSourceTable
Table getSourceTable()
Returns the source table.
-
getTargetTable
Table getTargetTable()
Returns the target table.
-
getSession
com.orchestranetworks.service.Session getSession()
Returns the current session context.
-
getRepository
com.orchestranetworks.instance.Repository getRepository()
Returns the current repository.
-
getSourceApplication
CommonApplication getSourceApplication()
Returns the source application.
-
getTargetApplication
CommonApplication getTargetApplication()
Returns the target application.
-
getServiceType
ServiceType getServiceType()
Returns the service type.
-
-