1 package org.kuali.ole.ingest.pojo;
2
3 import java.sql.Date;
4 import java.util.List;
5
6
7
8
9 public class OlePatronPostalAddress {
10 private String postalAddressType;
11 private List<OleAddressLine> addressLinesList;
12 private String country;
13 private String city;
14 private String stateProvince;
15 private String postalCode;
16 private String addressSource;
17 private Date addressValidTo;
18 private Date addressValidFrom;
19 private boolean addressVerified;
20 private boolean defaults;
21 private boolean active;
22 private boolean deliverAddress;
23
24
25
26
27 public String getPostalAddressType() {
28 return postalAddressType;
29 }
30
31
32
33
34 public void setPostalAddressType(String postalAddressType) {
35 this.postalAddressType = postalAddressType;
36 }
37
38
39
40
41 public List<OleAddressLine> getAddressLinesList() {
42 return addressLinesList;
43 }
44
45
46
47
48 public void setAddressLinesList(List<OleAddressLine> addressLinesList) {
49 this.addressLinesList = addressLinesList;
50 }
51
52
53
54
55 public String getCountry() {
56 return country;
57 }
58
59
60
61
62 public void setCountry(String country) {
63 this.country = country;
64 }
65
66
67
68
69 public String getCity() {
70 return city;
71 }
72
73
74
75
76 public void setCity(String city) {
77 this.city = city;
78 }
79
80
81
82
83 public String getStateProvince() {
84 return stateProvince;
85 }
86
87
88
89
90 public void setStateProvince(String stateProvince) {
91 this.stateProvince = stateProvince;
92 }
93
94
95
96
97 public String getPostalCode() {
98 return postalCode;
99 }
100
101
102
103
104 public void setPostalCode(String postalCode) {
105 this.postalCode = postalCode;
106 }
107
108
109
110
111 public boolean isActive() {
112 return active;
113 }
114
115
116
117
118 public void setActive(boolean active) {
119 this.active = active;
120 }
121
122
123
124
125 public boolean isDefaults() {
126 return defaults;
127 }
128
129
130
131
132 public void setDefaults(boolean defaults) {
133 this.defaults = defaults;
134 }
135
136
137
138
139 public Date getAddressValidTo() {
140 return addressValidTo;
141 }
142
143
144
145
146 public void setAddressValidTo(Date addressValidTo) {
147 this.addressValidTo = addressValidTo;
148 }
149
150
151
152
153 public Date getAddressValidFrom() {
154 return addressValidFrom;
155 }
156
157
158
159
160 public void setAddressValidFrom(Date addressValidFrom) {
161 this.addressValidFrom = addressValidFrom;
162 }
163
164
165
166
167 public boolean isAddressVerified() {
168 return addressVerified;
169 }
170
171
172
173
174
175
176 public void setAddressVerified(boolean addressVerified) {
177 this.addressVerified = addressVerified;
178 }
179
180 public String getAddressSource() {
181 return addressSource;
182 }
183
184 public void setAddressSource(String addressSource) {
185 this.addressSource = addressSource;
186 }
187
188 public boolean isDeliverAddress() {
189 return deliverAddress;
190 }
191
192 public void setDeliverAddress(boolean deliverAddress) {
193 this.deliverAddress = deliverAddress;
194 }
195 }