Clover Coverage Report - Kuali Student 1.1-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Mar 3 2011 04:02:59 EST
../../../../../../img/srcFileCovDistChart0.png 49% of files have more coverage
8   55   8   1
0   37   1   8
8     1  
1    
 
  CluAdminOrg       Line # 7 8 0% 8 16 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 CluAdminOrg extends KsBusinessObjectBase {
8   
9    private static final long serialVersionUID = -7668691777254348964L;
10   
11    @Column(name = "ORG_ID")
12    private String orgId;
13   
14    @Column(name = "TYPE")
15    private String type;
16   
17    @Column(name = "IS_PR")
18    private boolean primary=false;
19   
20    private String cluId;
21   
22   
 
23  0 toggle public String getOrgId() {
24  0 return orgId;
25    }
26   
 
27  0 toggle public void setOrgId(String orgId) {
28  0 this.orgId = orgId;
29    }
30   
 
31  0 toggle public String getType() {
32  0 return type;
33    }
34   
 
35  0 toggle public void setType(String type) {
36  0 this.type = type;
37    }
38   
 
39  0 toggle public boolean isPrimary() {
40  0 return primary;
41    }
42   
 
43  0 toggle public void setPrimary(boolean primary) {
44  0 this.primary = primary;
45    }
46   
 
47  0 toggle public String getCluId() {
48  0 return cluId;
49    }
50   
 
51  0 toggle public void setCluId(String cluId) {
52  0 this.cluId = cluId;
53    }
54   
55    }