1
2
3
4
5
6
7
8
9 package gov.ojp.it.jxdm._3_0;
10
11 import java.util.ArrayList;
12 import java.util.List;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlElement;
16 import javax.xml.bind.annotation.XmlRootElement;
17 import javax.xml.bind.annotation.XmlType;
18 import gov.ojp.it.jxdm._3_0_3.proxy.xsd._1.Date;
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43 @XmlAccessorType(XmlAccessType.FIELD)
44 @XmlType(name = "", propOrder = {
45 "personName",
46 "personPhysicalDetails",
47 "personBirthDate",
48 "residence"
49 })
50 @XmlRootElement(name = "Person")
51 public class Person
52 extends SuperType
53 {
54
55 @XmlElement(name = "PersonName", required = true)
56 protected PersonNameType personName;
57 @XmlElement(name = "PersonPhysicalDetails", required = true)
58 protected PersonPhysicalDetailsType personPhysicalDetails;
59 @XmlElement(name = "PersonBirthDate", required = true)
60 protected Date personBirthDate;
61 @XmlElement(name = "Residence")
62 protected List<ResidenceType> residence;
63
64
65
66
67
68 public Person() {
69 super();
70 }
71
72
73
74
75
76 public Person(final String sourceIDText, final String id, final PersonNameType personName, final PersonPhysicalDetailsType personPhysicalDetails, final Date personBirthDate, final List<ResidenceType> residence) {
77 super(sourceIDText, id);
78 this.personName = personName;
79 this.personPhysicalDetails = personPhysicalDetails;
80 this.personBirthDate = personBirthDate;
81 this.residence = residence;
82 }
83
84
85
86
87
88
89
90
91
92 public PersonNameType getPersonName() {
93 return personName;
94 }
95
96
97
98
99
100
101
102
103
104 public void setPersonName(PersonNameType value) {
105 this.personName = value;
106 }
107
108
109
110
111
112
113
114
115
116 public PersonPhysicalDetailsType getPersonPhysicalDetails() {
117 return personPhysicalDetails;
118 }
119
120
121
122
123
124
125
126
127
128 public void setPersonPhysicalDetails(PersonPhysicalDetailsType value) {
129 this.personPhysicalDetails = value;
130 }
131
132
133
134
135
136
137
138
139
140 public Date getPersonBirthDate() {
141 return personBirthDate;
142 }
143
144
145
146
147
148
149
150
151
152 public void setPersonBirthDate(Date value) {
153 this.personBirthDate = value;
154 }
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178 public List<ResidenceType> getResidence() {
179 if (residence == null) {
180 residence = new ArrayList<ResidenceType>();
181 }
182 return this.residence;
183 }
184
185 }