1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
package org.kuali.student.lum.lu.dto; |
18 |
|
|
19 |
|
import javax.xml.bind.annotation.XmlAccessType; |
20 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
21 |
|
import javax.xml.bind.annotation.XmlAttribute; |
22 |
|
import javax.xml.bind.annotation.XmlElement; |
23 |
|
import java.io.Serializable; |
24 |
|
import java.util.Date; |
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
|
36 |
|
|
37 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 20 (20) |
Complexity: 10 |
Complexity Density: 1 |
|
38 |
|
public class AffiliatedOrgInfo implements Serializable { |
39 |
|
|
40 |
|
private static final long serialVersionUID = 1L; |
41 |
|
|
42 |
|
@XmlAttribute |
43 |
|
private String id; |
44 |
|
|
45 |
|
@XmlElement |
46 |
|
private String orgId; |
47 |
|
|
48 |
|
@XmlElement |
49 |
|
private Date effectiveDate; |
50 |
|
|
51 |
|
@XmlElement |
52 |
|
private Date expirationDate; |
53 |
|
|
54 |
|
@XmlElement |
55 |
|
private Long percentage; |
56 |
|
|
57 |
|
|
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
62 |
0
|
public String getOrgId() {... |
63 |
0
|
return orgId; |
64 |
|
} |
65 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
66 |
0
|
public void setOrgId(String orgId) {... |
67 |
0
|
this.orgId = orgId; |
68 |
|
} |
69 |
|
|
70 |
|
|
71 |
|
|
72 |
|
|
73 |
|
|
74 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
75 |
0
|
public Date getEffectiveDate() {... |
76 |
0
|
return effectiveDate; |
77 |
|
} |
78 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
79 |
0
|
public void setEffectiveDate(Date effectiveDate) {... |
80 |
0
|
this.effectiveDate = effectiveDate; |
81 |
|
} |
82 |
|
|
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
|
87 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
88 |
0
|
public Date getExpirationDate() {... |
89 |
0
|
return expirationDate; |
90 |
|
} |
91 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
92 |
0
|
public void setExpirationDate(Date expirationDate) {... |
93 |
0
|
this.expirationDate = expirationDate; |
94 |
|
} |
95 |
|
|
96 |
|
|
97 |
|
|
98 |
|
|
99 |
|
|
100 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
101 |
0
|
public Long getPercentage() {... |
102 |
0
|
return percentage; |
103 |
|
} |
104 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
105 |
0
|
public void setPercentage(Long percentage) {... |
106 |
0
|
this.percentage = percentage; |
107 |
|
} |
108 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
109 |
0
|
public String getId() {... |
110 |
0
|
return id; |
111 |
|
} |
112 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
113 |
0
|
public void setId(String id) {... |
114 |
0
|
this.id = id; |
115 |
|
} |
116 |
|
} |