Interface IMatchFunctionDS

All Superinterfaces:
IReportingDS
All Known Implementing Classes:
ExtXmlMatchFunctionDS

public interface IMatchFunctionDS extends IReportingDS
This interface describes the methods needed to initialize a match function during initialization time of the match engine.
Since:
6.2
Author:
O. Kerpershoek, F. van der Meer
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the (unique) name of the match function.
    This method returns the parameters the match function needs to initialize.
    This method returns the type name for this match function.

    Methods inherited from interface com.aquima.interactions.foundation.report.IReportingDS

    addMessage
  • Method Details

    • getName

      String getName()
      This method returns the (unique) name of the match function.
      Returns:
      The name of the match function.
    • getTypeName

      String getTypeName()
      This method returns the type name for this match function. The type is connected to a class implementing the match function
      Returns:
      The type name for this match function which can never be null.
    • getParameters

      Map<String,Object> getParameters()
      This method returns the parameters the match function needs to initialize.
      Returns:
      The parameters the match function needs to initialize.