1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.lo.entity; |
17 |
|
|
18 |
|
import javax.persistence.Entity; |
19 |
|
import javax.persistence.JoinColumn; |
20 |
|
import javax.persistence.ManyToOne; |
21 |
|
import javax.persistence.Table; |
22 |
|
|
23 |
|
import org.kuali.student.common.entity.Attribute; |
24 |
|
|
25 |
|
|
26 |
|
@author |
27 |
|
|
28 |
|
|
29 |
|
@Entity |
30 |
|
@Table(name = "KSLO_LO_RELTN_ATTR") |
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
31 |
|
public class LoLoRelationAttribute extends Attribute<LoLoRelation> { |
32 |
|
@ManyToOne |
33 |
|
@JoinColumn(name = "OWNER") |
34 |
|
private LoLoRelation owner; |
35 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
36 |
0
|
@Override... |
37 |
|
public LoLoRelation getOwner() { |
38 |
0
|
return owner; |
39 |
|
} |
40 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
41 |
0
|
@Override... |
42 |
|
public void setOwner(LoLoRelation owner) { |
43 |
0
|
this.owner = owner; |
44 |
|
} |
45 |
|
} |