Package com.orchestranetworks.addon.adix
Interface TransformContextForExport
-
public interface TransformContextForExportDeprecated.Since 2.3.0, replaced byTransformationExecutionContext.Provides methods for transforming data before exporting it to file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description intgetColumn()Deprecated.Returns the number of the column in the exported file.java.lang.StringgetColumnTitle()Deprecated.Returns the title of column in exported file.com.onwbp.adaptation.PrimaryKeygetPrimaryKeyOfRecord()Deprecated.Returns the primary key of the record.com.onwbp.adaptation.AdaptationTablegetReferencedTable()Deprecated.Returns the referenced table if the node is a foreign key andnullotherwise.com.orchestranetworks.instance.RepositorygetRepository()Deprecated.Returns the current repository.intgetRow()Deprecated.Returns the number of the row in the exported file.com.orchestranetworks.schema.SchemaNodegetSchemaNode()Deprecated.Returns the data model node of exported field.com.orchestranetworks.service.SessiongetSession()Deprecated.Returns the current session.com.onwbp.adaptation.AdaptationTablegetSourceTable()Deprecated.Returns the table that contains the exported field.com.onwbp.adaptation.AdaptationTablegetTargetTable()Deprecated.usegetReferencedTable()instead.java.lang.ObjectgetValueInTable()Deprecated.Returns the value of field in the table.
-
-
-
Method Detail
-
getSchemaNode
com.orchestranetworks.schema.SchemaNode getSchemaNode()
Deprecated.Returns the data model node of exported field.
-
getRow
int getRow()
Deprecated.Returns the number of the row in the exported file.
-
getColumn
int getColumn()
Deprecated.Returns the number of the column in the exported file.
-
getColumnTitle
java.lang.String getColumnTitle()
Deprecated.Returns the title of column in exported file.
-
getValueInTable
java.lang.Object getValueInTable()
Deprecated.Returns the value of field in the table.
-
getPrimaryKeyOfRecord
com.onwbp.adaptation.PrimaryKey getPrimaryKeyOfRecord()
Deprecated.Returns the primary key of the record.
-
getTargetTable
com.onwbp.adaptation.AdaptationTable getTargetTable()
Deprecated.usegetReferencedTable()instead.Returns the referenced table if the node is a foreign key andnullotherwise.
-
getReferencedTable
com.onwbp.adaptation.AdaptationTable getReferencedTable()
Deprecated.Returns the referenced table if the node is a foreign key andnullotherwise.- Since:
- 2.1.6
-
getRepository
com.orchestranetworks.instance.Repository getRepository()
Deprecated.Returns the current repository.- Since:
- 2.1.6
-
getSession
com.orchestranetworks.service.Session getSession()
Deprecated.Returns the current session.- Since:
- 2.1.6
-
getSourceTable
com.onwbp.adaptation.AdaptationTable getSourceTable()
Deprecated.Returns the table that contains the exported field.- Since:
- 2.1.6
-
-