View Javadoc

1   /**
2    * Copyright 2004-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.kpme.core.salarygroup;
17  
18  import java.math.BigDecimal;
19  
20  import org.kuali.kpme.core.api.salarygroup.SalaryGroupContract;
21  import org.kuali.kpme.core.bo.HrBusinessObject;
22  import org.kuali.kpme.core.institution.Institution;
23  import org.kuali.kpme.core.leaveplan.LeavePlan;
24  import org.kuali.kpme.core.location.Location;
25  import org.kuali.kpme.core.util.HrConstants;
26  
27  import com.google.common.collect.ImmutableList;
28  public class SalaryGroup extends HrBusinessObject implements SalaryGroupContract {
29  
30  	private static final long serialVersionUID = 8169672203236887348L;
31  
32  	public static final String CACHE_NAME = HrConstants.CacheNamespace.NAMESPACE_PREFIX + "SalaryGroup";
33  	//KPME-2273/1965 Primary Business Keys List.	
34  	public static final ImmutableList<String> EQUAL_TO_FIELDS = new ImmutableList.Builder<String>()
35              .add("hrSalGroup")
36              .build();
37  
38  	
39  	private String hrSalGroupId;
40  	private String hrSalGroup;
41  	private String descr;
42  	private boolean history;
43  
44  	// fields added to position management
45  	private String institution;
46  	private String location;
47  	private BigDecimal percentTime;
48  	private String benefitsEligible;
49  	private String leaveEligible;
50  	private String leavePlan;
51  	
52  	//	relationship objects
53  	private transient Institution institutionObj;
54  	private transient Location locationObj;
55  	private transient LeavePlan leavePlanObj;
56  
57  	public Institution getInstitutionObj() {
58  		return institutionObj;
59  	}
60  
61  	public void setInstitutionObj(Institution institutionObj) {
62  		this.institutionObj = institutionObj;
63  	}
64  
65  	public Location getLocationObj() {
66  		return locationObj;
67  	}
68  
69  	public void setLocationObj(Location locationObj) {
70  		this.locationObj = locationObj;
71  	}
72  
73  	public LeavePlan getLeavePlanObj() {
74  		return leavePlanObj;
75  	}
76  
77  	public void setLeavePlanObj(LeavePlan leavePlanObj) {
78  		this.leavePlanObj = leavePlanObj;
79  	}
80  
81  	public boolean isHistory() {
82  		return history;
83  	}
84  
85  	public void setHistory(boolean history) {
86  		this.history = history;
87  	}
88  
89  	public String getHrSalGroupId() {
90  		return hrSalGroupId;
91  	}
92  
93  	public void setHrSalGroupId(String hrSalGroupId) {
94  		this.hrSalGroupId = hrSalGroupId;
95  	}
96  
97  	public String getHrSalGroup() {
98  		return hrSalGroup;
99  	}
100 
101 	public void setHrSalGroup(String hrSalGroup) {
102 		this.hrSalGroup = hrSalGroup;
103 	}
104 
105 	public String getDescr() {
106 		return descr;
107 	}
108 
109 	public void setDescr(String descr) {
110 		this.descr = descr;
111 	}
112 
113 	@Override
114 	public String getUniqueKey() {
115 		return getHrSalGroup() + "_" + getInstitution() + "_" + getLocation();
116 	}
117 
118 	@Override
119 	public String getId() {
120 		return getHrSalGroupId();
121 	}
122 
123 	@Override
124 	public void setId(String id) {
125 		setHrSalGroupId(id);
126 	}
127 
128 	public String getInstitution() {
129 		return institution;
130 	}
131 
132 	public void setInstitution(String institution) {
133 		this.institution = institution;
134 	}
135 
136 	public BigDecimal getPercentTime() {
137 		return percentTime;
138 	}
139 
140 	public void setPercentTime(BigDecimal percentTime) {
141 		this.percentTime = percentTime;
142 	}
143 
144 	public String getBenefitsEligible() {
145 		return benefitsEligible;
146 	}
147 
148 	public void setBenefitsEligible(String benefitsEligible) {
149 		this.benefitsEligible = benefitsEligible;
150 	}
151 
152 	public String getLeaveEligible() {
153 		return leaveEligible;
154 	}
155 
156 	public void setLeaveEligible(String leaveEligible) {
157 		this.leaveEligible = leaveEligible;
158 	}
159 
160 	public String getLeavePlan() {
161 		return leavePlan;
162 	}
163 
164 	public void setLeavePlan(String leavePlan) {
165 		this.leavePlan = leavePlan;
166 	}
167 
168 	public String getLocation() {
169 		return location;
170 	}
171 
172 	public void setLocation(String location) {
173 		this.location = location;
174 	}
175 
176 }