Interface IMatchConditionVisitor

All Known Implementing Classes:
MatchConditionVisitor, ReportingMatchConditionVisitor

public interface IMatchConditionVisitor
The visitor is used to process the information of a match condition.
Since:
7.1
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addMatchCondition(String sourceExpression, MatchConditionOperator matchOperator, String targetExpression)
    The iterate method should invoke this method with a valid datasource implementation for each source entity mapping.
  • Method Details

    • addMatchCondition

      void addMatchCondition(String sourceExpression, MatchConditionOperator matchOperator, String targetExpression)
      The iterate method should invoke this method with a valid datasource implementation for each source entity mapping.
      Parameters:
      sourceExpression - The source expression, may not be null.
      matchOperator - The operator that is used to compare the source expression with the target expression, may not be null.
      targetExpression - The target expression, may not be null.
      Throws:
      InitializationException - This exception is thrown when the match condition could not be initialized with the provided data.