1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.datadictionary.validation;
17
18
19
20
21
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
31
32 public String getEmployeeId() {
33 return this.employeeId;
34 }
35
36
37
38 public void setEmployeeId(String employeeId) {
39 this.employeeId = employeeId;
40 }
41
42
43
44 public String getPositionTitle() {
45 return this.positionTitle;
46 }
47
48
49
50 public void setPositionTitle(String positionTitle) {
51 this.positionTitle = positionTitle;
52 }
53
54
55
56 public String getContactPhone() {
57 return this.contactPhone;
58 }
59
60
61
62 public void setContactPhone(String contactPhone) {
63 this.contactPhone = contactPhone;
64 }
65
66
67
68 public String getContactEmail() {
69 return this.contactEmail;
70 }
71
72
73
74 public void setContactEmail(String contactEmail) {
75 this.contactEmail = contactEmail;
76 }
77
78
79
80 public Person getEmployeeDetails() {
81 return this.employeeDetails;
82 }
83
84
85
86 public void setEmployeeDetails(Person employeeDetails) {
87 this.employeeDetails = employeeDetails;
88 }
89
90
91
92 }