Class ProcessContext

java.lang.Object
org.kuali.rice.kew.engine.ProcessContext

public class ProcessContext extends Object
Maintains context of the main processing loop of the workflow engine. Essentially contains a List of node instances which need to be processed. After a node instance is processed from the context, the engine will check the status of the complete flag to determine whether processing should continue or halt.
Author:
Kuali Rice Team (rice.collab@kuali.org)
  • Constructor Details

    • ProcessContext

      public ProcessContext()
    • ProcessContext

      public ProcessContext(boolean complete, List<RouteNodeInstance> nextNodeInstances)
  • Method Details

    • getNextNodeInstances

      public List<RouteNodeInstance> getNextNodeInstances()
    • isComplete

      public boolean isComplete()
    • setComplete

      public void setComplete(boolean complete)