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