Interface TransformationConfigurationContext
-
public interface TransformationConfigurationContextDeprecated.Since 2.3.0, replaced byTransformationConfigurationContext.Provides 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 one time for an import, export or a transfer data.
- It is used in the method
Transformation.setup(TransformationConfigurationContext)of aTransformation.
- Since:
- 2.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetLogicalNameOfSourceApplication()Deprecated.Returns the source application's logical name.java.lang.StringgetLogicalNameOfTargetApplication()Deprecated.Returns the target application's logical name.java.util.List<ParameterDefinition>getParameters()Deprecated.Returns the list of parameters.com.orchestranetworks.instance.RepositorygetRepository()Deprecated.Returns the current repository.DataExchangeServiceTypegetServiceType()Deprecated.Returns the service type.com.orchestranetworks.service.SessiongetSession()Deprecated.Returns the current session context.com.onwbp.adaptation.AdaptationTablegetSourceTable()Deprecated.Returns the table containing the source field andnullduring import.ApplicationTypegetSourceType()Deprecated.Returns the source application type.com.onwbp.adaptation.AdaptationTablegetTargetTable()Deprecated.Returns the table containing the target field andnullduring export.ApplicationTypegetTargetType()Deprecated.Returns the target application type.java.lang.StringgetUniversalNameOfSourceApplication()Deprecated.Returns the source application's universal name.java.lang.StringgetUniversalNameOfTargetApplication()Deprecated.Returns the target application's universal name.
-
-
-
Method Detail
-
getParameters
java.util.List<ParameterDefinition> getParameters()
Deprecated.Returns the list of parameters.
-
getSourceTable
com.onwbp.adaptation.AdaptationTable getSourceTable()
Deprecated.Returns the table containing the source field andnullduring import.
-
getTargetTable
com.onwbp.adaptation.AdaptationTable getTargetTable()
Deprecated.Returns the table containing the target field andnullduring export.
-
getSession
com.orchestranetworks.service.Session getSession()
Deprecated.Returns the current session context.
-
getRepository
com.orchestranetworks.instance.Repository getRepository()
Deprecated.Returns the current repository.
-
getSourceType
ApplicationType getSourceType()
Deprecated.Returns the source application type.
-
getLogicalNameOfSourceApplication
java.lang.String getLogicalNameOfSourceApplication()
Deprecated.Returns the source application's logical name.
-
getLogicalNameOfTargetApplication
java.lang.String getLogicalNameOfTargetApplication()
Deprecated.Returns the target application's logical name.
-
getUniversalNameOfSourceApplication
java.lang.String getUniversalNameOfSourceApplication()
Deprecated.Returns the source application's universal name.
-
getUniversalNameOfTargetApplication
java.lang.String getUniversalNameOfTargetApplication()
Deprecated.Returns the target application's universal name.
-
getTargetType
ApplicationType getTargetType()
Deprecated.Returns the target application type.
-
getServiceType
DataExchangeServiceType getServiceType()
Deprecated.Returns the service type.
-
-