Coverage Report - org.kuali.student.r2.core.class1.state.model.StateLifecycleRelationEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
StateLifecycleRelationEntity
0%
0/10
N/A
1
 
 1  
 package org.kuali.student.r2.core.class1.state.model;
 2  
 
 3  
 import javax.persistence.Entity;
 4  
 import javax.persistence.JoinColumn;
 5  
 import javax.persistence.ManyToOne;
 6  
 import javax.persistence.NamedQueries;
 7  
 import javax.persistence.NamedQuery;
 8  
 import javax.persistence.Table;
 9  
 
 10  
 import org.kuali.student.r2.common.entity.MetaEntity;
 11  
 
 12  
 
 13  
 @Entity
 14  
 @Table(name = "KSEN_STATEPROCESS_RELTN")
 15  
 @NamedQueries({
 16  
         @NamedQuery(name="StateProcess.getInitialValidStates", query="select spr.nextState from StateLifecycleRelationEntity spr where spr.priorState.id is null and spr.process.id=:processKey"),
 17  
         @NamedQuery(name="StateProcess.getNextHappyState", query="select spr.nextState from StateLifecycleRelationEntity spr where spr.priorState.id=:stateKey and spr.process.id=:processKey")
 18  
 })
 19  0
 public class StateLifecycleRelationEntity extends MetaEntity {
 20  
         @ManyToOne
 21  
     @JoinColumn(name="PROCESS_KEY")
 22  
     private LifecycleEntity process;
 23  
     
 24  
         @ManyToOne
 25  
     @JoinColumn(name="PRIOR_STATEKEY")
 26  
     private StateEntity priorState;
 27  
 
 28  
         @ManyToOne
 29  
     @JoinColumn(name="NEXT_STATEKEY")
 30  
     private StateEntity nextState;
 31  
 
 32  
         public StateEntity getPriorState() {
 33  0
                 return priorState;
 34  
         }
 35  
 
 36  
         public void setPriorState(StateEntity priorState) {
 37  0
                 this.priorState = priorState;
 38  0
         }
 39  
 
 40  
         public LifecycleEntity getProcess() {
 41  0
                 return process;
 42  
         }
 43  
 
 44  
         public void setProcess(LifecycleEntity process) {
 45  0
                 this.process = process;
 46  0
         }
 47  
 
 48  
         public StateEntity getNextState() {
 49  0
                 return nextState;
 50  
         }
 51  
 
 52  
         public void setNextState(StateEntity nextState) {
 53  0
                 this.nextState = nextState;
 54  0
         }        
 55  
 }