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.AttributeOverride;
20  import javax.persistence.Column;
21  import javax.persistence.Entity;
22  import javax.persistence.FetchType;
23  import javax.persistence.JoinColumn;
24  import javax.persistence.ManyToOne;
25  import javax.persistence.Table;
26  import javax.persistence.Version;
27  
28  /**
29   * A piece of state on a {@link Branch} stored as a key-value pair of Strings.
30   *
31   * @author Kuali Rice Team (rice.collab@kuali.org)
32   */
33  @Entity
34  @Table(name="KREW_RTE_BRCH_ST_T")
35  @AttributeOverride(name="stateId", column=@Column(name="RTE_BRCH_ST_ID"))
36  public class BranchState extends State {
37      /**
38       * Prefix under which "variables" are stored in the branch state table, to distinguish
39       * them from non-variable key/value pairs.
40       */
41      public static final String VARIABLE_PREFIX = "var::";
42  
43      private static final long serialVersionUID = -7642477013444817952L;
44  
45      @ManyToOne(fetch=FetchType.EAGER)
46  	@JoinColumn(name="RTE_BRCH_ID")
47  	private Branch branch;
48      @Version
49  	@Column(name="VER_NBR")
50  	private Integer lockVerNbr;
51      
52      public BranchState() {}
53      
54      public BranchState(String key, String value) {
55          super(key, value);
56      }
57      
58      public Branch getBranch() {
59          return branch;
60      }
61  
62      public void setBranch(Branch branch) {
63          this.branch = branch;
64      }
65  
66      public Long getBranchStateId() {
67          return getStateId();
68      }
69  
70      public void setBranchStateId(Long branchStateId) {
71          setStateId(branchStateId);
72      }
73  
74      public Integer getLockVerNbr() {
75          return lockVerNbr;
76      }
77  
78      public void setLockVerNbr(Integer lockVerNbr) {
79          this.lockVerNbr = lockVerNbr;
80      }
81  
82      public String toString() {
83          return "[BranchState: stateId=" + getStateId() + ", branch=" + branch + ", key=" + key + ", value=" + value + "]"; 
84      }
85      
86      
87  }
88