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