Clover Coverage Report - KS Admin 1.1.0-M10
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
4   33   4   1
0   21   1   4
4     1  
1    
 
  CluCampusLocation       Line # 7 4 0% 4 8 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 CluCampusLocation extends KsBusinessObjectBase {
8   
9    private static final long serialVersionUID = -3035956537786940766L;
10   
11    @Column(name = "CAMP_LOC")
12    private String campusLocation;
13   
14    private String cluId;
15   
16   
 
17  0 toggle public String getCampusLocation() {
18  0 return campusLocation;
19    }
20   
 
21  0 toggle public void setCampusLocation(String campusLocation) {
22  0 this.campusLocation = campusLocation;
23    }
24   
 
25  0 toggle public String getCluId() {
26  0 return cluId;
27    }
28   
 
29  0 toggle public void setCluId(String cluId) {
30  0 this.cluId = cluId;
31    }
32   
33    }