Interface TransformationConfigurationContext
public interface TransformationConfigurationContext
Deprecated.
Provides configuration attributes for the 
Transformation implementation 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
Modifier and TypeMethodDescriptionDeprecated.Returns the source application's logical name.Deprecated.Returns the target application's logical name.Deprecated.Returns the list of parameters.com.orchestranetworks.instance.RepositoryDeprecated.Returns the current repository.Deprecated.Returns the service type.com.orchestranetworks.service.SessionDeprecated.Returns the current session context.com.onwbp.adaptation.AdaptationTableDeprecated.Returns the table containing the source field andnullduring import.Deprecated.Returns the source application type.com.onwbp.adaptation.AdaptationTableDeprecated.Returns the table containing the target field andnullduring export.Deprecated.Returns the target application type.Deprecated.Returns the source application's universal name.Deprecated.Returns the target application's universal name. 
- 
Method Details
- 
getParameters
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
String getLogicalNameOfSourceApplication()Deprecated.Returns the source application's logical name. - 
getLogicalNameOfTargetApplication
String getLogicalNameOfTargetApplication()Deprecated.Returns the target application's logical name. - 
getUniversalNameOfSourceApplication
String getUniversalNameOfSourceApplication()Deprecated.Returns the source application's universal name. - 
getUniversalNameOfTargetApplication
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. 
 - 
 
TransformationConfigurationContext.