Clover Coverage Report - Kuali Student 1.2-M5-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Aug 29 2011 05:04:27 EDT
../../../../../../img/srcFileCovDistChart0.png 42% of files have more coverage
20   122   20   1
0   86   1   20
20     1  
1    
 
  CluIdentifier       Line # 7 20 0% 20 40 0% 0.0
 
No Tests
 
1    package org.kuali.student.lum.lu.bo;
2   
3    import javax.persistence.Column;
4   
5    import org.kuali.student.core.bo.KsBusinessObjectBase;
6   
 
7    public class CluIdentifier extends KsBusinessObjectBase {
8   
9    private static final long serialVersionUID = -3231108861178451995L;
10   
11    @Column(name = "CD")
12    private String code;
13   
14    @Column(name = "SHRT_NAME")
15    private String shortName;
16   
17    @Column(name = "LNG_NAME")
18    private String longName;
19   
20    @Column(name = "LVL")
21    private String level;
22   
23    @Column(name = "DIV")
24    private String division;
25   
26    @Column(name = "VARTN")
27    private String variation;
28   
29    @Column(name = "SUFX_CD")
30    private String suffixCode;
31   
32    @Column(name = "ORG_ID")
33    private String orgId;
34   
35    @Column(name = "TYPE")
36    private String type;
37   
38    @Column(name = "ST")
39    private String state;
40   
41   
 
42  0 toggle public String getCode() {
43  0 return code;
44    }
45   
 
46  0 toggle public void setCode(String code) {
47  0 this.code = code;
48    }
49   
 
50  0 toggle public String getShortName() {
51  0 return shortName;
52    }
53   
 
54  0 toggle public void setShortName(String shortName) {
55  0 this.shortName = shortName;
56    }
57   
 
58  0 toggle public String getLongName() {
59  0 return longName;
60    }
61   
 
62  0 toggle public void setLongName(String longName) {
63  0 this.longName = longName;
64    }
65   
 
66  0 toggle public String getLevel() {
67  0 return level;
68    }
69   
 
70  0 toggle public void setLevel(String level) {
71  0 this.level = level;
72    }
73   
 
74  0 toggle public String getDivision() {
75  0 return division;
76    }
77   
 
78  0 toggle public void setDivision(String division) {
79  0 this.division = division;
80    }
81   
 
82  0 toggle public String getVariation() {
83  0 return variation;
84    }
85   
 
86  0 toggle public void setVariation(String variation) {
87  0 this.variation = variation;
88    }
89   
 
90  0 toggle public String getSuffixCode() {
91  0 return suffixCode;
92    }
93   
 
94  0 toggle public void setSuffixCode(String suffixCode) {
95  0 this.suffixCode = suffixCode;
96    }
97   
 
98  0 toggle public String getOrgId() {
99  0 return orgId;
100    }
101   
 
102  0 toggle public void setOrgId(String orgId) {
103  0 this.orgId = orgId;
104    }
105   
 
106  0 toggle public String getType() {
107  0 return type;
108    }
109   
 
110  0 toggle public void setType(String type) {
111  0 this.type = type;
112    }
113   
 
114  0 toggle public String getState() {
115  0 return state;
116    }
117   
 
118  0 toggle public void setState(String state) {
119  0 this.state = state;
120    }
121   
122    }