View Javadoc

1   /*
2    * Copyright 2005-2007 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.node;
18  
19  import javax.persistence.*;
20  
21  /**
22   * The state of a {@link RouteNodeInstance} represented as a key-value pair of Strings.
23   *
24   * @author Kuali Rice Team (rice.collab@kuali.org)
25   */
26  @Entity
27  @Table(name="KREW_RTE_NODE_INSTN_ST_T")
28  @AttributeOverride(name="stateId", column=@Column(name="RTE_NODE_INSTN_ST_ID"))
29  @NamedQueries({
30  	@NamedQuery(name="NodeState.FindNodeState", query="select n from NodeState as n where n.nodeInstance.routeNodeInstanceId = :routeNodeInstanceId and n.key = :key"),
31  	@NamedQuery(name="NodeState.FindNodeStateById", query="select n from NodeState as n where n.stateId = :nodeStateId")
32  })
33  public class NodeState extends State {
34  
35      private static final long serialVersionUID = -4382379569851955918L;
36  
37      @ManyToOne(fetch=FetchType.EAGER)
38  	@JoinColumn(name="RTE_NODE_INSTN_ID")
39  	private RouteNodeInstance nodeInstance;
40      @Version
41  	@Column(name="VER_NBR")
42  	private Integer lockVerNbr;
43      
44      public NodeState() {}
45      
46      public NodeState(String key, String value) {
47      	super(key, value);
48      }
49      
50      
51      public RouteNodeInstance getNodeInstance() {
52          return nodeInstance;
53      }
54      public void setNodeInstance(RouteNodeInstance nodeInstance) {
55          this.nodeInstance = nodeInstance;
56      }
57  
58      public String getNodeStateId() {
59          return getStateId();
60      }
61  
62      public void setNodeStateId(String nodeStateId) {
63          setStateId(nodeStateId);
64      }
65  
66      public Integer getLockVerNbr() {
67          return lockVerNbr;
68      }
69  
70      public void setLockVerNbr(Integer lockVerNbr) {
71          this.lockVerNbr = lockVerNbr;
72      }
73  }