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