Coverage Report - org.kuali.rice.krms.api.Action
 
Classes in this File Line Coverage Branch Coverage Complexity
Action
N/A
N/A
1
 
 1  
 package org.kuali.rice.krms.api;
 2  
 
 3  
 public interface Action {
 4  
 
 5  
         public void execute(ExecutionEnvironment environment);
 6  
 
 7  
         /**
 8  
          * The engine may be run in a simulation mode and in this case,
 9  
          * most actions should not be executed.  However, if part or all of 
 10  
          * an action needs to be run in order for proper rule evaluation to 
 11  
          * proceed, it should be called herein.
 12  
          */
 13  
         public void executeSimulation(ExecutionEnvironment environment);
 14  
 }