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