Class FalseTriggeredRule

java.lang.Object
org.kuali.rice.krms.framework.engine.BasicRule
org.kuali.rice.krms.framework.engine.FalseTriggeredRule
All Implemented Interfaces:
Rule

public class FalseTriggeredRule extends BasicRule
A BasicRule that executes its Action when evaluation is false.
  • Constructor Details

    • FalseTriggeredRule

      public FalseTriggeredRule(Proposition proposition, List<Action> actions)
      Parameters:
      proposition -
      actions -
  • Method Details

    • shouldExecuteAction

      protected boolean shouldExecuteAction(boolean ruleExecutionResult)
      Description copied from class: BasicRule
      Based on the ruleExecutionResult should the Action be executed? Default behavior is to return the given ruleExecutionResult. Over-writable by subclasses.
      Overrides:
      shouldExecuteAction in class BasicRule
      Parameters:
      ruleExecutionResult - the result of the engines evaluation method.
      Returns:
      boolean should the action execute