1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.coeus.s2sgen.impl.person;
17
18
19
20
21
22 public class DepartmentalPersonDto implements java.io.Serializable {
23 private String personId;
24 private String lastName;
25 private String firstName;
26 private String middleName;
27 private String fullName;
28 private String emailAddress;
29 private String officePhone;
30 private String dirDept;
31 private String primaryTitle;
32 private String homeUnit;
33 private String address1;
34 private String address2;
35 private String address3;
36 private String city;
37 private String county;
38 private String state;
39 private String postalCode;
40 private String countryCode;
41 private String faxNumber;
42
43
44
45
46 public String getPersonId() {
47 return personId;
48 }
49
50
51
52
53
54 public void setPersonId(String personId) {
55 this.personId = personId;
56 }
57
58
59
60
61 public String getLastName() {
62 return lastName;
63 }
64
65
66
67
68
69 public void setLastName(String lastName) {
70 this.lastName = lastName;
71 }
72
73
74
75
76 public String getFirstName() {
77 return firstName;
78 }
79
80
81
82
83
84 public void setFirstName(String firstName) {
85 this.firstName = firstName;
86 }
87
88
89
90
91 public String getMiddleName() {
92 return middleName;
93 }
94
95
96
97
98
99 public void setMiddleName(String middleName) {
100 this.middleName = middleName;
101 }
102
103
104
105
106 public String getFullName() {
107 return fullName;
108 }
109
110
111
112
113
114 public void setFullName(String fullName) {
115 this.fullName = fullName;
116 }
117
118
119
120
121 public String getEmailAddress() {
122 return emailAddress;
123 }
124
125
126
127
128
129 public void setEmailAddress(String emailAddress) {
130 this.emailAddress = emailAddress;
131 }
132
133
134
135
136 public String getOfficePhone() {
137 return officePhone;
138 }
139
140
141
142
143
144 public void setOfficePhone(String officePhone) {
145 this.officePhone = officePhone;
146 }
147
148
149
150
151 public String getDirDept() {
152 return dirDept;
153 }
154
155
156
157
158
159 public void setDirDept(String dirDept) {
160 this.dirDept = dirDept;
161 }
162
163
164
165
166 public String getPrimaryTitle() {
167 return primaryTitle;
168 }
169
170
171
172
173
174 public void setPrimaryTitle(String primaryTitle) {
175 this.primaryTitle = primaryTitle;
176 }
177
178
179
180
181 public String getHomeUnit() {
182 return homeUnit;
183 }
184
185
186
187
188
189 public void setHomeUnit(String homeUnit) {
190 this.homeUnit = homeUnit;
191 }
192
193
194
195
196 public String getAddress1() {
197 return address1;
198 }
199
200
201
202
203
204 public void setAddress1(String address1) {
205 this.address1 = address1;
206 }
207
208
209
210
211 public String getAddress2() {
212 return address2;
213 }
214
215
216
217
218
219 public void setAddress2(String address2) {
220 this.address2 = address2;
221 }
222
223
224
225
226 public String getAddress3() {
227 return address3;
228 }
229
230
231
232
233
234 public void setAddress3(String address3) {
235 this.address3 = address3;
236 }
237
238
239
240
241 public String getCity() {
242 return city;
243 }
244
245
246
247
248
249 public void setCity(String city) {
250 this.city = city;
251 }
252
253
254
255
256 public String getCounty() {
257 return county;
258 }
259
260
261
262
263
264 public void setCounty(String county) {
265 this.county = county;
266 }
267
268
269
270
271 public String getState() {
272 return state;
273 }
274
275
276
277
278
279 public void setState(String state) {
280 this.state = state;
281 }
282
283
284
285
286 public String getPostalCode() {
287 return postalCode;
288 }
289
290
291
292
293
294 public void setPostalCode(String postalCode) {
295 this.postalCode = postalCode;
296 }
297
298
299
300
301 public String getCountryCode() {
302 return countryCode;
303 }
304
305
306
307
308
309 public void setCountryCode(String countryCode) {
310 this.countryCode = countryCode;
311 }
312
313
314
315
316 public String getFaxNumber() {
317 return faxNumber;
318 }
319
320
321
322
323
324 public void setFaxNumber(String faxNumber) {
325 this.faxNumber = faxNumber;
326 }
327 }