1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.enrollment.lpr.model; |
17 |
|
|
18 |
|
import javax.persistence.Entity; |
19 |
|
import javax.persistence.Table; |
20 |
|
|
21 |
|
import org.kuali.student.common.infc.Attribute; |
22 |
|
import org.kuali.student.r2.common.entity.BaseAttributeEntity; |
23 |
|
|
24 |
|
@Entity |
25 |
|
@Table(name = "KSLP_LPR_ATTR") |
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 3 |
Complexity Density: 1.5 |
|
26 |
|
public class LuiPersonRelationAttributeEntity extends BaseAttributeEntity { |
27 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
28 |
0
|
public LuiPersonRelationAttributeEntity () {... |
29 |
|
} |
30 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
31 |
0
|
public LuiPersonRelationAttributeEntity(String key, String value) {... |
32 |
0
|
super(key, value); |
33 |
|
} |
34 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
35 |
0
|
public LuiPersonRelationAttributeEntity(Attribute att) {... |
36 |
0
|
super(att); |
37 |
|
} |
38 |
|
} |