View Javadoc
1   /*
2    * Copyright 2005-2014 The Kuali Foundation.
3    * 
4    * Licensed under the Educational Community License, Version 1.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    * http://www.opensource.org/licenses/ecl1.php
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.coeus.s2sgen.impl.person;
17  
18  /**
19   * This class is a VO for caching and transferring personnel information
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  	 * @return the personId
45  	 */
46  	public String getPersonId() {
47  		return personId;
48  	}
49  
50  	/**
51  	 * @param personId
52  	 *            the personId to set
53  	 */
54  	public void setPersonId(String personId) {
55  		this.personId = personId;
56  	}
57  
58  	/**
59  	 * @return the lastName
60  	 */
61  	public String getLastName() {
62  		return lastName;
63  	}
64  
65  	/**
66  	 * @param lastName
67  	 *            the lastName to set
68  	 */
69  	public void setLastName(String lastName) {
70  		this.lastName = lastName;
71  	}
72  
73  	/**
74  	 * @return the firstName
75  	 */
76  	public String getFirstName() {
77  		return firstName;
78  	}
79  
80  	/**
81  	 * @param firstName
82  	 *            the firstName to set
83  	 */
84  	public void setFirstName(String firstName) {
85  		this.firstName = firstName;
86  	}
87  
88  	/**
89  	 * @return the middleName
90  	 */
91  	public String getMiddleName() {
92  		return middleName;
93  	}
94  
95  	/**
96  	 * @param middleName
97  	 *            the middleName to set
98  	 */
99  	public void setMiddleName(String middleName) {
100 		this.middleName = middleName;
101 	}
102 
103 	/**
104 	 * @return the fullName
105 	 */
106 	public String getFullName() {
107 		return fullName;
108 	}
109 
110 	/**
111 	 * @param fullName
112 	 *            the fullName to set
113 	 */
114 	public void setFullName(String fullName) {
115 		this.fullName = fullName;
116 	}
117 
118 	/**
119 	 * @return the emailAddress
120 	 */
121 	public String getEmailAddress() {
122 		return emailAddress;
123 	}
124 
125 	/**
126 	 * @param emailAddress
127 	 *            the emailAddress to set
128 	 */
129 	public void setEmailAddress(String emailAddress) {
130 		this.emailAddress = emailAddress;
131 	}
132 
133 	/**
134 	 * @return the officePhone
135 	 */
136 	public String getOfficePhone() {
137 		return officePhone;
138 	}
139 
140 	/**
141 	 * @param officePhone
142 	 *            the officePhone to set
143 	 */
144 	public void setOfficePhone(String officePhone) {
145 		this.officePhone = officePhone;
146 	}
147 
148 	/**
149 	 * @return the dirDept
150 	 */
151 	public String getDirDept() {
152 		return dirDept;
153 	}
154 
155 	/**
156 	 * @param dirDept
157 	 *            the dirDept to set
158 	 */
159 	public void setDirDept(String dirDept) {
160 		this.dirDept = dirDept;
161 	}
162 
163 	/**
164 	 * @return the primaryTitle
165 	 */
166 	public String getPrimaryTitle() {
167 		return primaryTitle;
168 	}
169 
170 	/**
171 	 * @param primaryTitle
172 	 *            the primaryTitle to set
173 	 */
174 	public void setPrimaryTitle(String primaryTitle) {
175 		this.primaryTitle = primaryTitle;
176 	}
177 
178 	/**
179 	 * @return the homeUnit
180 	 */
181 	public String getHomeUnit() {
182 		return homeUnit;
183 	}
184 
185 	/**
186 	 * @param homeUnit
187 	 *            the homeUnit to set
188 	 */
189 	public void setHomeUnit(String homeUnit) {
190 		this.homeUnit = homeUnit;
191 	}
192 
193 	/**
194 	 * @return the address1
195 	 */
196 	public String getAddress1() {
197 		return address1;
198 	}
199 
200 	/**
201 	 * @param address1
202 	 *            the address1 to set
203 	 */
204 	public void setAddress1(String address1) {
205 		this.address1 = address1;
206 	}
207 
208 	/**
209 	 * @return the address2
210 	 */
211 	public String getAddress2() {
212 		return address2;
213 	}
214 
215 	/**
216 	 * @param address2
217 	 *            the address2 to set
218 	 */
219 	public void setAddress2(String address2) {
220 		this.address2 = address2;
221 	}
222 
223 	/**
224 	 * @return the address3
225 	 */
226 	public String getAddress3() {
227 		return address3;
228 	}
229 
230 	/**
231 	 * @param address3
232 	 *            the address3 to set
233 	 */
234 	public void setAddress3(String address3) {
235 		this.address3 = address3;
236 	}
237 
238 	/**
239 	 * @return the city
240 	 */
241 	public String getCity() {
242 		return city;
243 	}
244 
245 	/**
246 	 * @param city
247 	 *            the city to set
248 	 */
249 	public void setCity(String city) {
250 		this.city = city;
251 	}
252 
253 	/**
254 	 * @return the county
255 	 */
256 	public String getCounty() {
257 		return county;
258 	}
259 
260 	/**
261 	 * @param county
262 	 *            the county to set
263 	 */
264 	public void setCounty(String county) {
265 		this.county = county;
266 	}
267 
268 	/**
269 	 * @return the state
270 	 */
271 	public String getState() {
272 		return state;
273 	}
274 
275 	/**
276 	 * @param state
277 	 *            the state to set
278 	 */
279 	public void setState(String state) {
280 		this.state = state;
281 	}
282 
283 	/**
284 	 * @return the postalCode
285 	 */
286 	public String getPostalCode() {
287 		return postalCode;
288 	}
289 
290 	/**
291 	 * @param postalCode
292 	 *            the postalCode to set
293 	 */
294 	public void setPostalCode(String postalCode) {
295 		this.postalCode = postalCode;
296 	}
297 
298 	/**
299 	 * @return the countryCode
300 	 */
301 	public String getCountryCode() {
302 		return countryCode;
303 	}
304 
305 	/**
306 	 * @param countryCode
307 	 *            the countryCode to set
308 	 */
309 	public void setCountryCode(String countryCode) {
310 		this.countryCode = countryCode;
311 	}
312 
313 	/**
314 	 * @return the faxNumber
315 	 */
316 	public String getFaxNumber() {
317 		return faxNumber;
318 	}
319 
320 	/**
321 	 * @param faxNumber
322 	 *            the faxNumber to set
323 	 */
324 	public void setFaxNumber(String faxNumber) {
325 		this.faxNumber = faxNumber;
326 	}
327 }