View Javadoc

1   /*
2    * Copyright 2005-2008 The Kuali Foundation
3    * 
4    * 
5    * Licensed under the Educational Community License, Version 2.0 (the "License");
6    * you may not use this file except in compliance with the License.
7    * You may obtain a copy of the License at
8    * 
9    * http://www.opensource.org/licenses/ecl2.php
10   * 
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.kuali.rice.kew.engine;
18  
19  import java.io.Serializable;
20  import java.util.ArrayList;
21  import java.util.List;
22  
23  import org.kuali.rice.kew.engine.node.RouteNodeInstance;
24  
25  
26  /**
27   * Represents the current state of the workflow engine.
28   * 
29   * @author Kuali Rice Team (rice.collab@kuali.org)
30   */
31  public class EngineState implements Serializable {
32      
33  	private static final long serialVersionUID = 2405363802483005090L;
34  
35  	private static int currentSimulationId = -10;
36      
37      private RouteNodeInstance transitioningFrom;
38      private RouteNodeInstance transitioningTo;
39      private List completeNodeInstances = new ArrayList();
40      private List generatedRequests = new ArrayList();
41      
42      public List getCompleteNodeInstances() {
43          return completeNodeInstances;
44      }
45      public void setCompleteNodeInstances(List completeNodeInstances) {
46          this.completeNodeInstances = completeNodeInstances;
47      }
48      public RouteNodeInstance getTransitioningFrom() {
49          return transitioningFrom;
50      }
51      public void setTransitioningFrom(RouteNodeInstance transitioningFrom) {
52          this.transitioningFrom = transitioningFrom;
53      }
54      public RouteNodeInstance getTransitioningTo() {
55          return transitioningTo;
56      }
57      public void setTransitioningTo(RouteNodeInstance transitioningTo) {
58          this.transitioningTo = transitioningTo;
59      }
60      public List getGeneratedRequests() {
61          return generatedRequests;
62      }
63      public void setGeneratedRequests(List generatedRequests) {
64          this.generatedRequests = generatedRequests;
65      }
66      
67      /**
68       * Gets the next id to be used for simulation purposes.  Since, during simulation, we cannot save to the database and get primary keys
69       * assigned to our data beans, this method will be used to get a new simulation id which is guaranteed to be a negative number
70       * which will be unique for at least the lifetime of the simulation.
71       */
72      public Long getNextSimulationId() {
73          synchronized (EngineState.class) {
74              return new Long(currentSimulationId--);
75          }
76      }
77      
78  }