Class ReportingBusinessRuleDS

java.lang.Object
com.aquima.interactions.foundation.report.ReportingDS
com.aquima.interactions.rule.report.ReportingBusinessRuleDS
All Implemented Interfaces:
IReportingDS, IRuleDS, IBusinessRuleDS

public class ReportingBusinessRuleDS extends ReportingDS implements IBusinessRuleDS
IBusinessRuleDS wrapper that adds error reporting.
Since:
9.1
Author:
r.fleuren
  • Constructor Details

  • Method Details

    • getRuleGroupNames

      public String[] getRuleGroupNames()
      Description copied from interface: IRuleDS
      This method returns an array containing the names of the rule groups the rule belongs to. If the rule does not belong to a specific rule group, the returned value may either be null or an empty array. Rules that belong to a rule group will only be evaluated when one (or more) of the rule groups are active. Rule groups are sometimes referred to as rule clusters.
      Specified by:
      getRuleGroupNames in interface IRuleDS
      Returns:
      an array containing the names of the rule groups the rule belongs to.
    • getName

      public String getName()
      Description copied from interface: IBusinessRuleDS
      This method returns the name of the business rule.
      Specified by:
      getName in interface IBusinessRuleDS
      Returns:
      the name of the business rule.
    • getConditionExpression

      public String getConditionExpression()
      Description copied from interface: IBusinessRuleDS
      This method returns the expression that should be evaluated to determine if the rule should fire.
      Specified by:
      getConditionExpression in interface IBusinessRuleDS
      Returns:
      the expression that should be evaluated to determine if the rule should fire.
    • getActionAttribute

      public String getActionAttribute()
      Description copied from interface: IBusinessRuleDS
      This method should return the full name of the attribute for which the rule can provide a value.
      Specified by:
      getActionAttribute in interface IBusinessRuleDS
      Returns:
      the full name of the attribute for which the rule can provide a value.
    • getActionExpression

      public String getActionExpression()
      Description copied from interface: IBusinessRuleDS
      This method should return the expression that should be evaluated to determine the value for the attribute.
      Specified by:
      getActionExpression in interface IBusinessRuleDS
      Returns:
      the expression that should be evaluated to determine the value for the attribute.
    • iterateJustifications

      public void iterateJustifications(IJustificationVisitor visitor)
      Description copied from interface: IBusinessRuleDS
      This method should iterate all the justification texts that are available for this rule, and add them to the supplied visitor.
      Specified by:
      iterateJustifications in interface IBusinessRuleDS
      Parameters:
      visitor - The visitor to which the justifications of this rule should be added.