Clover Coverage Report - KS LUM 1.1.0-M10-SNAPSHOT (Aggregated)
Coverage timestamp: Fri Dec 17 2010 06:40:47 EST
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
20   137   20   1
0   89   1   20
20     1  
1    
 
  CluIdentifier       Line # 26 20 0% 20 0 100% 1.0
 
  (102)
 
1    /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10    * software distributed under the License is distributed on an "AS IS"
11    * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12    * or implied. See the License for the specific language governing
13    * permissions and limitations under the License.
14    */
15   
16    package org.kuali.student.lum.lu.entity;
17   
18    import javax.persistence.Column;
19    import javax.persistence.Entity;
20    import javax.persistence.Table;
21   
22    import org.kuali.student.core.entity.BaseEntity;
23   
24    @Entity
25    @Table(name = "KSLU_CLU_IDENT")
 
26    public class CluIdentifier extends BaseEntity{
27   
28    @Column(name = "CD")
29    private String code;
30   
31    @Column(name = "SHRT_NAME")
32    private String shortName;
33   
34    @Column(name = "LNG_NAME")
35    private String longName;
36   
37    @Column(name = "LVL")
38    private String level;
39   
40    @Column(name = "DIV")
41    private String division;
42   
43    @Column(name = "VARTN")
44    private String variation;
45   
46    @Column(name = "SUFX_CD")
47    private String suffixCode;
48   
49    @Column(name = "ORG_ID")
50    private String orgId;
51   
52    @Column(name = "TYPE")
53    private String type;
54   
55    @Column(name = "ST")
56    private String state;
57   
 
58  994 toggle public String getCode() {
59  994 return code;
60    }
61   
 
62  272 toggle public void setCode(String code) {
63  272 this.code = code;
64    }
65   
 
66  994 toggle public String getShortName() {
67  994 return shortName;
68    }
69   
 
70  272 toggle public void setShortName(String shortName) {
71  272 this.shortName = shortName;
72    }
73   
 
74  994 toggle public String getLongName() {
75  994 return longName;
76    }
77   
 
78  272 toggle public void setLongName(String longName) {
79  272 this.longName = longName;
80    }
81   
 
82  994 toggle public String getLevel() {
83  994 return level;
84    }
85   
 
86  272 toggle public void setLevel(String level) {
87  272 this.level = level;
88    }
89   
 
90  994 toggle public String getDivision() {
91  994 return division;
92    }
93   
 
94  272 toggle public void setDivision(String division) {
95  272 this.division = division;
96    }
97   
 
98  994 toggle public String getVariation() {
99  994 return variation;
100    }
101   
 
102  272 toggle public void setVariation(String variation) {
103  272 this.variation = variation;
104    }
105   
 
106  994 toggle public String getType() {
107  994 return type;
108    }
109   
 
110  272 toggle public void setType(String type) {
111  272 this.type = type;
112    }
113   
 
114  994 toggle public String getState() {
115  994 return state;
116    }
117   
 
118  272 toggle public void setState(String state) {
119  272 this.state = state;
120    }
121   
 
122  994 toggle public String getSuffixCode() {
123  994 return suffixCode;
124    }
125   
 
126  272 toggle public void setSuffixCode(String suffixCode) {
127  272 this.suffixCode = suffixCode;
128    }
129   
 
130  994 toggle public String getOrgId() {
131  994 return orgId;
132    }
133   
 
134  272 toggle public void setOrgId(String orgId) {
135  272 this.orgId = orgId;
136    }
137    }