Clover Coverage Report - KS Admin 1.1-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
16   101   16   1
0   72   1   16
16     1  
1    
 
  CluCluRelation       Line # 9 16 0% 16 32 0% 0.0
 
No Tests
 
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    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  0 toggle public String getCluId() {
38  0 return cluId;
39    }
40   
 
41  0 toggle public void setCluId(String cluId) {
42  0 this.cluId = cluId;
43    }
44   
 
45  0 toggle public Clu getClu() {
46  0 return clu;
47    }
48   
 
49  0 toggle public void setClu(Clu clu) {
50  0 this.clu = clu;
51    }
52   
 
53  0 toggle public String getRelatedCluId() {
54  0 return relatedCluId;
55    }
56   
 
57  0 toggle public void setRelatedCluId(String relatedCluId) {
58  0 this.relatedCluId = relatedCluId;
59    }
60   
 
61  0 toggle public Clu getRelatedClu() {
62  0 return relatedClu;
63    }
64   
 
65  0 toggle public void setRelatedClu(Clu relatedClu) {
66  0 this.relatedClu = relatedClu;
67    }
68   
 
69  0 toggle public String getLuLuRelationTypeId() {
70  0 return luLuRelationTypeId;
71    }
72   
 
73  0 toggle public void setLuLuRelationTypeId(String luLuRelationTypeId) {
74  0 this.luLuRelationTypeId = luLuRelationTypeId;
75    }
76   
 
77  0 toggle public LuLuRelationType getLuLuRelationType() {
78  0 return luLuRelationType;
79    }
80   
 
81  0 toggle public void setLuLuRelationType(LuLuRelationType luLuRelationType) {
82  0 this.luLuRelationType = luLuRelationType;
83    }
84   
 
85  0 toggle public boolean isCluRelationRequired() {
86  0 return cluRelationRequired;
87    }
88   
 
89  0 toggle public void setCluRelationRequired(boolean cluRelationRequired) {
90  0 this.cluRelationRequired = cluRelationRequired;
91    }
92   
 
93  0 toggle public String getState() {
94  0 return state;
95    }
96   
 
97  0 toggle public void setState(String state) {
98  0 this.state = state;
99    }
100   
101    }