1 package org.kuali.ole.ingest.pojo;
2
3 import org.kuali.rice.core.api.util.type.KualiDecimal;
4
5 import java.util.List;
6
7 /**
8 * OlePatronAffiliations is a business object class for Ole Patron Affiliation Document
9 */
10 public class OlePatronEmployments {
11
12 private String employeeId;
13 private boolean primary;
14 private String employeeStatusCode;
15 private String employeeTypeCode;
16 private KualiDecimal baseSalaryAmount;
17 private String primaryDepartmentCode;
18 private boolean active;
19
20 /**
21 * Gets the employeeId attribute.
22 * @return Returns the employeeId.
23 */
24 public String getEmployeeId() {
25 return employeeId;
26 }
27 /**
28 * Sets the employeeId attribute value.
29 * @param employeeId The employeeId to set.
30 */
31 public void setEmployeeId(String employeeId) {
32 this.employeeId = employeeId;
33 }
34
35 /**
36 * Gets the primary attribute.
37 * @return Returns the primary.
38 */
39 public boolean getPrimary() {
40 return primary;
41 }
42 /**
43 * Sets the primary attribute value.
44 * @param primary The primary to set.
45 */
46 public void setPrimary(boolean primary) {
47 this.primary = primary;
48 }
49 /**
50 * Gets the employeeStatusCode attribute.
51 * @return Returns the employeeStatusCode.
52 */
53 public String getEmployeeStatusCode() {
54 return employeeStatusCode;
55 }
56 /**
57 * Sets the employeeStatusCode attribute value.
58 * @param employeeStatusCode The employeeStatusCode to set.
59 */
60 public void setEmployeeStatusCode(String employeeStatusCode) {
61 this.employeeStatusCode = employeeStatusCode;
62 }
63 /**
64 * Gets the employeeTypeCode attribute.
65 * @return Returns the employeeTypeCode.
66 */
67 public String getEmployeeTypeCode() {
68 return employeeTypeCode;
69 }
70 /**
71 * Sets the employeeTypeCode attribute value.
72 * @param employeeTypeCode The employeeTypeCode to set.
73 */
74 public void setEmployeeTypeCode(String employeeTypeCode) {
75 this.employeeTypeCode = employeeTypeCode;
76 }
77 /**
78 * Gets the baseSalaryAmount attribute.
79 * @return Returns the baseSalaryAmount.
80 */
81 public KualiDecimal getBaseSalaryAmount() {
82 return baseSalaryAmount;
83 }
84
85 /**
86 * Sets the baseSalaryAmount attribute value.
87 * @param baseSalaryAmount The baseSalaryAmount to set.
88 */
89 public void setBaseSalaryAmount(KualiDecimal baseSalaryAmount) {
90 this.baseSalaryAmount = baseSalaryAmount;
91 }
92
93 /**
94 * Gets the primaryDepartmentCode attribute.
95 * @return Returns the primaryDepartmentCode.
96 */
97 public String getPrimaryDepartmentCode() {
98 return primaryDepartmentCode;
99 }
100 /**
101 * Sets the primaryDepartmentCode attribute value.
102 * @param primaryDepartmentCode The primaryDepartmentCode to set.
103 */
104 public void setPrimaryDepartmentCode(String primaryDepartmentCode) {
105 this.primaryDepartmentCode = primaryDepartmentCode;
106 }
107
108 /**
109 * Gets the active attribute.
110 * @return Returns the active.
111 */
112 public boolean isActive() {
113 return active;
114 }
115 /**
116 * Sets the active attribute value.
117 * @param active The active to set.
118 */
119 public void setActive(boolean active) {
120 this.active = active;
121 }
122
123 }