Package com.orchestranetworks.addon.adix
Interface TransformContextForImport
-
public interface TransformContextForImportDeprecated.Since 2.3.0, replaced byTransformationExecutionContext.Provides methods for transforming data before importing it into the repository.
-
-
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 imported file.java.lang.StringgetColumnTitle()Deprecated.Returns the title of the column in imported file.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 imported file.com.orchestranetworks.schema.SchemaNodegetSchemaNode()Deprecated.Returns the data model node of the imported field.com.orchestranetworks.service.SessiongetSession()Deprecated.Returns the current session.com.onwbp.adaptation.AdaptationTablegetTargetTable()Deprecated.Returns the table into which the data will be imported.java.lang.ObjectgetValueInSpreadsheet()Deprecated.Returns the value of the cell in imported file.java.lang.ObjectgetValueInSpreadsheet(int columnIndex)Deprecated.Returns the value of the cell on the specific column in imported file.
-
-
-
Method Detail
-
getSchemaNode
com.orchestranetworks.schema.SchemaNode getSchemaNode()
Deprecated.Returns the data model node of the imported field.
-
getRow
int getRow()
Deprecated.Returns the number of the row in the imported file.
-
getColumn
int getColumn()
Deprecated.Returns the number of the column in the imported file.
-
getColumnTitle
java.lang.String getColumnTitle()
Deprecated.Returns the title of the column in imported file.
-
getValueInSpreadsheet
java.lang.Object getValueInSpreadsheet()
Deprecated.Returns the value of the cell in imported file.
-
getValueInSpreadsheet
java.lang.Object getValueInSpreadsheet(int columnIndex)
Deprecated.Returns the value of the cell on the specific column in imported file.- Since:
- 2.1.6
-
getTargetTable
com.onwbp.adaptation.AdaptationTable getTargetTable()
Deprecated.Returns the table into which the data will be imported.
-
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
-
getReferencedTable
com.onwbp.adaptation.AdaptationTable getReferencedTable()
Deprecated.Returns the referenced table if the node is a foreign key andnullotherwise.- Since:
- 2.1.6
-
-