1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.core.person.dto; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.ArrayList; |
20 | |
import java.util.Date; |
21 | |
import java.util.HashMap; |
22 | |
import java.util.List; |
23 | |
import java.util.Map; |
24 | |
|
25 | |
import javax.xml.bind.annotation.XmlAccessType; |
26 | |
import javax.xml.bind.annotation.XmlAccessorType; |
27 | |
import javax.xml.bind.annotation.XmlAttribute; |
28 | |
import javax.xml.bind.annotation.XmlElement; |
29 | |
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
30 | |
|
31 | |
import org.kuali.student.common.dto.HasAttributes; |
32 | |
import org.kuali.student.common.dto.Idable; |
33 | |
import org.kuali.student.common.dto.MetaInfo; |
34 | |
import org.kuali.student.core.ws.binding.JaxbAttributeMapListAdapter; |
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
@XmlAccessorType(XmlAccessType.FIELD) |
40 | 0 | public class PersonInfo implements Serializable, Idable, HasAttributes { |
41 | |
|
42 | |
private static final long serialVersionUID = 1L; |
43 | |
|
44 | |
@XmlElement |
45 | |
private List<String> personTypeKeyList; |
46 | |
|
47 | |
@XmlElement |
48 | |
private List<PersonNameInfo> personNameInfoList; |
49 | |
|
50 | |
@XmlElement |
51 | |
private List<PersonCitizenshipInfo> personCitizenshipInfoList; |
52 | |
|
53 | |
@XmlElement |
54 | |
private List<PersonVisaInfo> personVisaInfoList; |
55 | |
|
56 | |
@XmlElement |
57 | |
private List<PersonResidencyInfo> personResidencyInfoList; |
58 | |
|
59 | |
@XmlElement |
60 | |
private List<PersonEthnicityInfo> personEthnicityInfoList; |
61 | |
|
62 | |
@XmlElement |
63 | |
private Date birthDate; |
64 | |
|
65 | |
@XmlElement |
66 | |
private Boolean isTestPerson; |
67 | |
|
68 | |
@XmlElement |
69 | |
private String gender; |
70 | |
|
71 | |
@XmlElement |
72 | |
private String photo; |
73 | |
|
74 | |
@XmlElement |
75 | |
private Date deceasedDate; |
76 | |
|
77 | |
@XmlElement |
78 | |
private String maritalStatusCode; |
79 | |
|
80 | |
@XmlElement |
81 | |
private String primaryLanguageCode; |
82 | |
|
83 | |
@XmlElement |
84 | |
private String secondaryLanguageCode; |
85 | |
|
86 | |
@XmlElement |
87 | |
private String countryofBirthCode; |
88 | |
|
89 | |
@XmlElement |
90 | |
private String stateofBirth; |
91 | |
|
92 | |
@XmlElement |
93 | |
private String cityofBirth; |
94 | |
|
95 | |
@XmlElement |
96 | |
private String geographicOrigin; |
97 | |
|
98 | |
@XmlElement |
99 | |
private Date effectiveDate; |
100 | |
|
101 | |
@XmlElement |
102 | |
private Date expirationDate; |
103 | |
|
104 | |
@XmlElement |
105 | |
@XmlJavaTypeAdapter(JaxbAttributeMapListAdapter.class) |
106 | |
private Map<String, String> attributes; |
107 | |
|
108 | |
@XmlElement |
109 | |
private MetaInfo metaInfo; |
110 | |
|
111 | |
@XmlElement |
112 | |
private String state; |
113 | |
|
114 | |
@XmlAttribute |
115 | |
private String id; |
116 | |
|
117 | |
|
118 | |
|
119 | |
|
120 | |
public List<String> getPersonTypeKeyList() { |
121 | 0 | if (personTypeKeyList == null) { |
122 | 0 | personTypeKeyList = new ArrayList<String>(); |
123 | |
} |
124 | 0 | return personTypeKeyList; |
125 | |
} |
126 | |
|
127 | |
public void setPersonTypeKeyList(List<String> personTypeKeyList) { |
128 | 0 | this.personTypeKeyList = personTypeKeyList; |
129 | 0 | } |
130 | |
|
131 | |
|
132 | |
|
133 | |
|
134 | |
public List<PersonNameInfo> getPersonNameInfoList() { |
135 | 0 | if (personNameInfoList == null) { |
136 | 0 | personNameInfoList = new ArrayList<PersonNameInfo>(); |
137 | |
} |
138 | 0 | return personNameInfoList; |
139 | |
} |
140 | |
|
141 | |
public void setPersonNameInfoList(List<PersonNameInfo> personNameInfoList) { |
142 | 0 | this.personNameInfoList = personNameInfoList; |
143 | 0 | } |
144 | |
|
145 | |
|
146 | |
|
147 | |
|
148 | |
public List<PersonCitizenshipInfo> getPersonCitizenshipInfoList() { |
149 | 0 | if (personCitizenshipInfoList == null) { |
150 | 0 | personCitizenshipInfoList = new ArrayList<PersonCitizenshipInfo>(); |
151 | |
} |
152 | 0 | return personCitizenshipInfoList; |
153 | |
} |
154 | |
|
155 | |
public void setPersonCitizenshipInfoList(List<PersonCitizenshipInfo> personCitizenshipInfoList) { |
156 | 0 | this.personCitizenshipInfoList = personCitizenshipInfoList; |
157 | 0 | } |
158 | |
|
159 | |
|
160 | |
|
161 | |
|
162 | |
public List<PersonVisaInfo> getPersonVisaInfoList() { |
163 | 0 | if (personVisaInfoList == null) { |
164 | 0 | personVisaInfoList = new ArrayList<PersonVisaInfo>(); |
165 | |
} |
166 | 0 | return personVisaInfoList; |
167 | |
} |
168 | |
|
169 | |
public void setPersonVisaInfoList(List<PersonVisaInfo> personVisaInfoList) { |
170 | 0 | this.personVisaInfoList = personVisaInfoList; |
171 | 0 | } |
172 | |
|
173 | |
|
174 | |
|
175 | |
|
176 | |
public List<PersonResidencyInfo> getPersonResidencyInfoList() { |
177 | 0 | if (personResidencyInfoList == null) { |
178 | 0 | personResidencyInfoList = new ArrayList<PersonResidencyInfo>(); |
179 | |
} |
180 | 0 | return personResidencyInfoList; |
181 | |
} |
182 | |
|
183 | |
public void setPersonResidencyInfoList(List<PersonResidencyInfo> personResidencyInfoList) { |
184 | 0 | this.personResidencyInfoList = personResidencyInfoList; |
185 | 0 | } |
186 | |
|
187 | |
|
188 | |
|
189 | |
|
190 | |
public List<PersonEthnicityInfo> getPersonEthnicityInfoList() { |
191 | 0 | if (personEthnicityInfoList == null) { |
192 | 0 | personEthnicityInfoList = new ArrayList<PersonEthnicityInfo>(); |
193 | |
} |
194 | 0 | return personEthnicityInfoList; |
195 | |
} |
196 | |
|
197 | |
public void setPersonEthnicityInfoList(List<PersonEthnicityInfo> personEthnicityInfoList) { |
198 | 0 | this.personEthnicityInfoList = personEthnicityInfoList; |
199 | 0 | } |
200 | |
|
201 | |
|
202 | |
|
203 | |
|
204 | |
public Date getBirthDate() { |
205 | 0 | return birthDate; |
206 | |
} |
207 | |
|
208 | |
public void setBirthDate(Date birthDate) { |
209 | 0 | this.birthDate = birthDate; |
210 | 0 | } |
211 | |
|
212 | |
|
213 | |
|
214 | |
|
215 | |
public Boolean getIsTestPerson() { |
216 | 0 | return isTestPerson; |
217 | |
} |
218 | |
|
219 | |
public void setIsTestPerson(Boolean isTestPerson) { |
220 | 0 | this.isTestPerson = isTestPerson; |
221 | 0 | } |
222 | |
|
223 | |
|
224 | |
|
225 | |
|
226 | |
public String getGender() { |
227 | 0 | return gender; |
228 | |
} |
229 | |
|
230 | |
public void setGender(String gender) { |
231 | 0 | this.gender = gender; |
232 | 0 | } |
233 | |
|
234 | |
|
235 | |
|
236 | |
|
237 | |
public String getPhoto() { |
238 | 0 | return photo; |
239 | |
} |
240 | |
|
241 | |
public void setPhoto(String photo) { |
242 | 0 | this.photo = photo; |
243 | 0 | } |
244 | |
|
245 | |
|
246 | |
|
247 | |
|
248 | |
public Date getDeceasedDate() { |
249 | 0 | return deceasedDate; |
250 | |
} |
251 | |
|
252 | |
public void setDeceasedDate(Date deceasedDate) { |
253 | 0 | this.deceasedDate = deceasedDate; |
254 | 0 | } |
255 | |
|
256 | |
|
257 | |
|
258 | |
|
259 | |
public String getMaritalStatusCode() { |
260 | 0 | return maritalStatusCode; |
261 | |
} |
262 | |
|
263 | |
public void setMaritalStatusCode(String maritalStatusCode) { |
264 | 0 | this.maritalStatusCode = maritalStatusCode; |
265 | 0 | } |
266 | |
|
267 | |
|
268 | |
|
269 | |
|
270 | |
public String getPrimaryLanguageCode() { |
271 | 0 | return primaryLanguageCode; |
272 | |
} |
273 | |
|
274 | |
public void setPrimaryLanguageCode(String primaryLanguageCode) { |
275 | 0 | this.primaryLanguageCode = primaryLanguageCode; |
276 | 0 | } |
277 | |
|
278 | |
|
279 | |
|
280 | |
|
281 | |
public String getSecondaryLanguageCode() { |
282 | 0 | return secondaryLanguageCode; |
283 | |
} |
284 | |
|
285 | |
public void setSecondaryLanguageCode(String secondaryLanguageCode) { |
286 | 0 | this.secondaryLanguageCode = secondaryLanguageCode; |
287 | 0 | } |
288 | |
|
289 | |
|
290 | |
|
291 | |
|
292 | |
public String getCountryofBirthCode() { |
293 | 0 | return countryofBirthCode; |
294 | |
} |
295 | |
|
296 | |
public void setCountryofBirthCode(String countryofBirthCode) { |
297 | 0 | this.countryofBirthCode = countryofBirthCode; |
298 | 0 | } |
299 | |
|
300 | |
|
301 | |
|
302 | |
|
303 | |
public String getStateofBirth() { |
304 | 0 | return stateofBirth; |
305 | |
} |
306 | |
|
307 | |
public void setStateofBirth(String stateofBirth) { |
308 | 0 | this.stateofBirth = stateofBirth; |
309 | 0 | } |
310 | |
|
311 | |
|
312 | |
|
313 | |
|
314 | |
public String getCityofBirth() { |
315 | 0 | return cityofBirth; |
316 | |
} |
317 | |
|
318 | |
public void setCityofBirth(String cityofBirth) { |
319 | 0 | this.cityofBirth = cityofBirth; |
320 | 0 | } |
321 | |
|
322 | |
|
323 | |
|
324 | |
|
325 | |
public String getGeographicOrigin() { |
326 | 0 | return geographicOrigin; |
327 | |
} |
328 | |
|
329 | |
public void setGeographicOrigin(String geographicOrigin) { |
330 | 0 | this.geographicOrigin = geographicOrigin; |
331 | 0 | } |
332 | |
|
333 | |
|
334 | |
|
335 | |
|
336 | |
public Date getEffectiveDate() { |
337 | 0 | return effectiveDate; |
338 | |
} |
339 | |
|
340 | |
public void setEffectiveDate(Date effectiveDate) { |
341 | 0 | this.effectiveDate = effectiveDate; |
342 | 0 | } |
343 | |
|
344 | |
|
345 | |
|
346 | |
|
347 | |
public Date getExpirationDate() { |
348 | 0 | return expirationDate; |
349 | |
} |
350 | |
|
351 | |
public void setExpirationDate(Date expirationDate) { |
352 | 0 | this.expirationDate = expirationDate; |
353 | 0 | } |
354 | |
|
355 | |
|
356 | |
|
357 | |
|
358 | |
public Map<String, String> getAttributes() { |
359 | 0 | if (attributes == null) { |
360 | 0 | attributes = new HashMap<String, String>(); |
361 | |
} |
362 | 0 | return attributes; |
363 | |
} |
364 | |
|
365 | |
public void setAttributes(Map<String, String> attributes) { |
366 | 0 | this.attributes = attributes; |
367 | 0 | } |
368 | |
|
369 | |
|
370 | |
|
371 | |
|
372 | |
public MetaInfo getMetaInfo() { |
373 | 0 | return metaInfo; |
374 | |
} |
375 | |
|
376 | |
public void setMetaInfo(MetaInfo metaInfo) { |
377 | 0 | this.metaInfo = metaInfo; |
378 | 0 | } |
379 | |
|
380 | |
|
381 | |
|
382 | |
|
383 | |
public String getState() { |
384 | 0 | return state; |
385 | |
} |
386 | |
|
387 | |
public void setState(String state) { |
388 | 0 | this.state = state; |
389 | 0 | } |
390 | |
|
391 | |
|
392 | |
|
393 | |
|
394 | |
public String getId() { |
395 | 0 | return id; |
396 | |
} |
397 | |
|
398 | |
public void setId(String id) { |
399 | 0 | this.id = id; |
400 | 0 | } |
401 | |
} |