1 |
|
package org.kuali.student.lum.lu.bo; |
2 |
|
|
3 |
|
import javax.persistence.Column; |
4 |
|
|
5 |
|
import org.kuali.student.core.bo.KsBusinessObjectBase; |
6 |
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
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 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
17 |
0
|
public String getCampusLocation() {... |
18 |
0
|
return campusLocation; |
19 |
|
} |
20 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
21 |
0
|
public void setCampusLocation(String campusLocation) {... |
22 |
0
|
this.campusLocation = campusLocation; |
23 |
|
} |
24 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
25 |
0
|
public String getCluId() {... |
26 |
0
|
return cluId; |
27 |
|
} |
28 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
29 |
0
|
public void setCluId(String cluId) {... |
30 |
0
|
this.cluId = cluId; |
31 |
|
} |
32 |
|
|
33 |
|
} |