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