Interface ValidatorContext
-
public interface ValidatorContextProvides the validation context.- Since:
- 2.3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.onwbp.adaptation.AdaptationgetCurrentRecord()Returns a record from the source table during data transfer.com.orchestranetworks.service.SessiongetSession()Returns the current session.RecordgetSourceRecord()Returns the source record during validation.EBXTablegetTargetTable()Returns the table in which data will be imported or transferred.java.lang.ObjectgetValue(EBXField field)Returns the value which will be imported or transfered to a target node in the data model.
-
-
-
Method Detail
-
getSourceRecord
Record getSourceRecord()
Returns the source record during validation.
-
getValue
java.lang.Object getValue(EBXField field)
Returns the value which will be imported or transfered to a target node in the data model.
-
getTargetTable
EBXTable getTargetTable()
Returns the table in which data will be imported or transferred.
-
getCurrentRecord
com.onwbp.adaptation.Adaptation getCurrentRecord()
Returns a record from the source table during data transfer. Otherwise, returnsnull.
-
getSession
com.orchestranetworks.service.Session getSession()
Returns the current session.
-
-