001 package org.kuali.ole.ingest.pojo;
002
003 import org.kuali.rice.core.api.util.type.KualiDecimal;
004
005 import java.util.List;
006
007 /**
008 * OlePatronAffiliations is a business object class for Ole Patron Affiliation Document
009 */
010 public class OlePatronEmployments {
011
012 private String employeeId;
013 private boolean primary;
014 private String employeeStatusCode;
015 private String employeeTypeCode;
016 private KualiDecimal baseSalaryAmount;
017 private String primaryDepartmentCode;
018 private boolean active;
019
020 /**
021 * Gets the employeeId attribute.
022 * @return Returns the employeeId.
023 */
024 public String getEmployeeId() {
025 return employeeId;
026 }
027 /**
028 * Sets the employeeId attribute value.
029 * @param employeeId The employeeId to set.
030 */
031 public void setEmployeeId(String employeeId) {
032 this.employeeId = employeeId;
033 }
034
035 /**
036 * Gets the primary attribute.
037 * @return Returns the primary.
038 */
039 public boolean getPrimary() {
040 return primary;
041 }
042 /**
043 * Sets the primary attribute value.
044 * @param primary The primary to set.
045 */
046 public void setPrimary(boolean primary) {
047 this.primary = primary;
048 }
049 /**
050 * Gets the employeeStatusCode attribute.
051 * @return Returns the employeeStatusCode.
052 */
053 public String getEmployeeStatusCode() {
054 return employeeStatusCode;
055 }
056 /**
057 * Sets the employeeStatusCode attribute value.
058 * @param employeeStatusCode The employeeStatusCode to set.
059 */
060 public void setEmployeeStatusCode(String employeeStatusCode) {
061 this.employeeStatusCode = employeeStatusCode;
062 }
063 /**
064 * Gets the employeeTypeCode attribute.
065 * @return Returns the employeeTypeCode.
066 */
067 public String getEmployeeTypeCode() {
068 return employeeTypeCode;
069 }
070 /**
071 * Sets the employeeTypeCode attribute value.
072 * @param employeeTypeCode The employeeTypeCode to set.
073 */
074 public void setEmployeeTypeCode(String employeeTypeCode) {
075 this.employeeTypeCode = employeeTypeCode;
076 }
077 /**
078 * Gets the baseSalaryAmount attribute.
079 * @return Returns the baseSalaryAmount.
080 */
081 public KualiDecimal getBaseSalaryAmount() {
082 return baseSalaryAmount;
083 }
084
085 /**
086 * Sets the baseSalaryAmount attribute value.
087 * @param baseSalaryAmount The baseSalaryAmount to set.
088 */
089 public void setBaseSalaryAmount(KualiDecimal baseSalaryAmount) {
090 this.baseSalaryAmount = baseSalaryAmount;
091 }
092
093 /**
094 * Gets the primaryDepartmentCode attribute.
095 * @return Returns the primaryDepartmentCode.
096 */
097 public String getPrimaryDepartmentCode() {
098 return primaryDepartmentCode;
099 }
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 }