-
- All Known Subinterfaces:
AggregationTransformationExecutionContext<SC,TC>,ExportTransformationExecutionContext<SC,TC>,ImportTransformationExecutionContext<SC,TC>,TransferTransformationExecutionContext
public interface TransformationExecutionContext<SC extends Field,TC extends Field>Provides the transformation context.- Since:
- 2.3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.orchestranetworks.service.ProcedureContextgetProcedureContext()Returns the current procedure context of the on-going transaction when importing, returnsnullwhen exporting.com.onwbp.adaptation.AdaptationTablegetReferencedTable()Returns the referenced table if the node is a foreign key andnullotherwise.SCgetSourceField()Returns the source field for Excel and CSV only.Record<SC>getSourceRecord()Returns a record from the source table during transfer or export andnullduring import.TCgetTargetField()Returns the target field during transfer or import andnullduring export.
-
-
-
Method Detail
-
getSourceRecord
Record<SC> getSourceRecord()
Returns a record from the source table during transfer or export andnullduring import.
-
getSourceField
SC getSourceField()
Returns the source field for Excel and CSV only.
-
getTargetField
TC getTargetField()
Returns the target field during transfer or import andnullduring export.
-
getReferencedTable
com.onwbp.adaptation.AdaptationTable getReferencedTable()
Returns the referenced table if the node is a foreign key andnullotherwise.
-
getProcedureContext
com.orchestranetworks.service.ProcedureContext getProcedureContext()
Returns the current procedure context of the on-going transaction when importing, returnsnullwhen exporting.- Since:
- 2.4.6
-
-