View Javadoc

1   /**
2    * Copyright 2005-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.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/ecl2.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.rice.krad.datadictionary.validation;
17  
18  
19  /**
20   *
21   * @author Kuali Rice Team (rice.collab@kuali.org)
22   */
23  public class Employee {
24  	private String employeeId;
25  	private String positionTitle;
26  	private String contactPhone;
27  	private String contactEmail;
28  	private Person employeeDetails;
29  	/**
30  	 * @return the employeeId
31  	 */
32  	public String getEmployeeId() {
33  		return this.employeeId;
34  	}
35  	/**
36  	 * @param employeeId the employeeId to set
37  	 */
38  	public void setEmployeeId(String employeeId) {
39  		this.employeeId = employeeId;
40  	}
41  	/**
42  	 * @return the positionTitle
43  	 */
44  	public String getPositionTitle() {
45  		return this.positionTitle;
46  	}
47  	/**
48  	 * @param positionTitle the positionTitle to set
49  	 */
50  	public void setPositionTitle(String positionTitle) {
51  		this.positionTitle = positionTitle;
52  	}
53  	/**
54  	 * @return the contactPhone
55  	 */
56  	public String getContactPhone() {
57  		return this.contactPhone;
58  	}
59  	/**
60  	 * @param contactPhone the contactPhone to set
61  	 */
62  	public void setContactPhone(String contactPhone) {
63  		this.contactPhone = contactPhone;
64  	}
65  	/**
66  	 * @return the contactEmail
67  	 */
68  	public String getContactEmail() {
69  		return this.contactEmail;
70  	}
71  	/**
72  	 * @param contactEmail the contactEmail to set
73  	 */
74  	public void setContactEmail(String contactEmail) {
75  		this.contactEmail = contactEmail;
76  	}
77  	/**
78  	 * @return the employeeDetails
79  	 */
80  	public Person getEmployeeDetails() {
81  		return this.employeeDetails;
82  	}
83  	/**
84  	 * @param employeeDetails the employeeDetails to set
85  	 */
86  	public void setEmployeeDetails(Person employeeDetails) {
87  		this.employeeDetails = employeeDetails;
88  	}
89  
90  
91  
92  }