Coverage Report - org.kuali.student.lum.lu.bo.CluCluRelation
 
Classes in this File Line Coverage Branch Coverage Complexity
CluCluRelation
0%
0/25
N/A
1
 
 1  
 package org.kuali.student.lum.lu.bo;
 2  
 
 3  
 import javax.persistence.Column;
 4  
 import javax.persistence.JoinColumn;
 5  
 import javax.persistence.ManyToOne;
 6  
 
 7  
 import org.kuali.student.core.bo.KsMetaInactivatableFromToBase;
 8  
 
 9  0
 public class CluCluRelation extends KsMetaInactivatableFromToBase {
 10  
 
 11  
     private static final long serialVersionUID = 8323054855041689038L;
 12  
 
 13  
     private String cluId;
 14  
     
 15  
     @ManyToOne
 16  
     @JoinColumn(name="CLU_ID")
 17  
     private Clu clu;
 18  
     
 19  
     private String relatedCluId;
 20  
     
 21  
     @ManyToOne
 22  
     @JoinColumn(name="RELATED_CLU_ID")
 23  
     private Clu relatedClu;
 24  
     
 25  
     private String luLuRelationTypeId;
 26  
     
 27  
     @ManyToOne
 28  
     @JoinColumn(name="LU_RELTN_TYPE_ID")
 29  
     private LuLuRelationType luLuRelationType;
 30  
     
 31  
     @Column(name = "CLU_RELTN_REQ")
 32  
     private boolean cluRelationRequired;
 33  
 
 34  
     @Column(name = "ST")
 35  
     private String state;
 36  
 
 37  
     public String getCluId() {
 38  0
         return cluId;
 39  
     }
 40  
 
 41  
     public void setCluId(String cluId) {
 42  0
         this.cluId = cluId;
 43  0
     }
 44  
 
 45  
     public Clu getClu() {
 46  0
         return clu;
 47  
     }
 48  
 
 49  
     public void setClu(Clu clu) {
 50  0
         this.clu = clu;
 51  0
     }
 52  
 
 53  
     public String getRelatedCluId() {
 54  0
         return relatedCluId;
 55  
     }
 56  
 
 57  
     public void setRelatedCluId(String relatedCluId) {
 58  0
         this.relatedCluId = relatedCluId;
 59  0
     }
 60  
 
 61  
     public Clu getRelatedClu() {
 62  0
         return relatedClu;
 63  
     }
 64  
 
 65  
     public void setRelatedClu(Clu relatedClu) {
 66  0
         this.relatedClu = relatedClu;
 67  0
     }
 68  
 
 69  
     public String getLuLuRelationTypeId() {
 70  0
         return luLuRelationTypeId;
 71  
     }
 72  
 
 73  
     public void setLuLuRelationTypeId(String luLuRelationTypeId) {
 74  0
         this.luLuRelationTypeId = luLuRelationTypeId;
 75  0
     }
 76  
 
 77  
     public LuLuRelationType getLuLuRelationType() {
 78  0
         return luLuRelationType;
 79  
     }
 80  
 
 81  
     public void setLuLuRelationType(LuLuRelationType luLuRelationType) {
 82  0
         this.luLuRelationType = luLuRelationType;
 83  0
     }
 84  
 
 85  
     public boolean isCluRelationRequired() {
 86  0
         return cluRelationRequired;
 87  
     }
 88  
 
 89  
     public void setCluRelationRequired(boolean cluRelationRequired) {
 90  0
         this.cluRelationRequired = cluRelationRequired;
 91  0
     }
 92  
 
 93  
     public String getState() {
 94  0
         return state;
 95  
     }
 96  
 
 97  
     public void setState(String state) {
 98  0
         this.state = state;
 99  0
     }
 100  
 
 101  
 }