Clover Coverage Report - KS Admin 1.1.1-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
8   59   8   1
0   41   1   8
8     1  
1    
 
  LuCode       Line # 9 8 0% 8 16 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.KsMetaBusinessObjectBase;
8   
 
9    public class LuCode extends KsMetaBusinessObjectBase {
10   
11    private static final long serialVersionUID = -4157117953758049897L;
12   
13    @Column(name = "DESCR")
14    private String description;
15   
16    @Column(name = "VALUE")
17    private String value;
18   
19    @Column(name = "TYPE")
20    private String type;
21   
22    @ManyToOne
23    @JoinColumn(name="CLU_ID")
24    private String cluId;
25   
26   
 
27  0 toggle public String getDescription() {
28  0 return description;
29    }
30   
 
31  0 toggle public void setDescription(String description) {
32  0 this.description = description;
33    }
34   
 
35  0 toggle public String getValue() {
36  0 return value;
37    }
38   
 
39  0 toggle public void setValue(String value) {
40  0 this.value = value;
41    }
42   
 
43  0 toggle public String getType() {
44  0 return type;
45    }
46   
 
47  0 toggle public void setType(String type) {
48  0 this.type = type;
49    }
50   
 
51  0 toggle public String getCluId() {
52  0 return cluId;
53    }
54   
 
55  0 toggle public void setCluId(String cluId) {
56  0 this.cluId = cluId;
57    }
58   
59    }