001 /** 002 * Copyright 2005-2012 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.rice.krad.datadictionary.validation; 017 018 019 /** 020 * 021 * @author Kuali Rice Team (rice.collab@kuali.org) 022 */ 023 public class Employee { 024 private String employeeId; 025 private String positionTitle; 026 private String contactPhone; 027 private String contactEmail; 028 private Person employeeDetails; 029 /** 030 * @return the employeeId 031 */ 032 public String getEmployeeId() { 033 return this.employeeId; 034 } 035 /** 036 * @param employeeId the employeeId to set 037 */ 038 public void setEmployeeId(String employeeId) { 039 this.employeeId = employeeId; 040 } 041 /** 042 * @return the positionTitle 043 */ 044 public String getPositionTitle() { 045 return this.positionTitle; 046 } 047 /** 048 * @param positionTitle the positionTitle to set 049 */ 050 public void setPositionTitle(String positionTitle) { 051 this.positionTitle = positionTitle; 052 } 053 /** 054 * @return the contactPhone 055 */ 056 public String getContactPhone() { 057 return this.contactPhone; 058 } 059 /** 060 * @param contactPhone the contactPhone to set 061 */ 062 public void setContactPhone(String contactPhone) { 063 this.contactPhone = contactPhone; 064 } 065 /** 066 * @return the contactEmail 067 */ 068 public String getContactEmail() { 069 return this.contactEmail; 070 } 071 /** 072 * @param contactEmail the contactEmail to set 073 */ 074 public void setContactEmail(String contactEmail) { 075 this.contactEmail = contactEmail; 076 } 077 /** 078 * @return the employeeDetails 079 */ 080 public Person getEmployeeDetails() { 081 return this.employeeDetails; 082 } 083 /** 084 * @param employeeDetails the employeeDetails to set 085 */ 086 public void setEmployeeDetails(Person employeeDetails) { 087 this.employeeDetails = employeeDetails; 088 } 089 090 091 092 }