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) |
38 | 0 | 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 | |
|
62 | |
public String getOrgId() { |
63 | 0 | return orgId; |
64 | |
} |
65 | |
|
66 | |
public void setOrgId(String orgId) { |
67 | 0 | this.orgId = orgId; |
68 | 0 | } |
69 | |
|
70 | |
|
71 | |
|
72 | |
|
73 | |
|
74 | |
|
75 | |
public Date getEffectiveDate() { |
76 | 0 | return effectiveDate; |
77 | |
} |
78 | |
|
79 | |
public void setEffectiveDate(Date effectiveDate) { |
80 | 0 | this.effectiveDate = effectiveDate; |
81 | 0 | } |
82 | |
|
83 | |
|
84 | |
|
85 | |
|
86 | |
|
87 | |
|
88 | |
public Date getExpirationDate() { |
89 | 0 | return expirationDate; |
90 | |
} |
91 | |
|
92 | |
public void setExpirationDate(Date expirationDate) { |
93 | 0 | this.expirationDate = expirationDate; |
94 | 0 | } |
95 | |
|
96 | |
|
97 | |
|
98 | |
|
99 | |
|
100 | |
|
101 | |
public Long getPercentage() { |
102 | 0 | return percentage; |
103 | |
} |
104 | |
|
105 | |
public void setPercentage(Long percentage) { |
106 | 0 | this.percentage = percentage; |
107 | 0 | } |
108 | |
|
109 | |
public String getId() { |
110 | 0 | return id; |
111 | |
} |
112 | |
|
113 | |
public void setId(String id) { |
114 | 0 | this.id = id; |
115 | 0 | } |
116 | |
} |