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.tklm.time.rules.shiftdifferential;
17  
18  import java.math.BigDecimal;
19  import java.sql.Time;
20  
21  import org.kuali.kpme.core.calendar.Calendar;
22  import org.kuali.kpme.core.earncode.EarnCode;
23  import org.kuali.kpme.core.earncode.group.EarnCodeGroup;
24  import org.kuali.kpme.core.location.Location;
25  import org.kuali.kpme.core.paygrade.PayGrade;
26  import org.kuali.kpme.core.salarygroup.SalaryGroup;
27  import org.kuali.kpme.tklm.api.time.rules.shiftdifferential.ShiftDifferentialRuleContract;
28  import org.kuali.kpme.tklm.common.TkConstants;
29  import org.kuali.kpme.tklm.time.rules.TkRule;
30  
31  import com.google.common.collect.ImmutableList;
32  
33  public class ShiftDifferentialRule extends TkRule implements ShiftDifferentialRuleContract {
34  
35  	private static final long serialVersionUID = -3990672795815968915L;
36  
37  	public static final String CACHE_NAME = TkConstants.CacheNamespace.NAMESPACE_PREFIX + "ShiftDifferentialRule";
38  	//KPME-2273/1965 Primary Business Keys List.	
39  	public static final ImmutableList<String> EQUAL_TO_FIELDS = new ImmutableList.Builder<String>()
40              .add("location")
41              .add("hrSalGroup")
42              .add("payGrade")
43              .add("earnCode")
44              .add("pyCalendarGroup")
45              .add("beginTime")
46              .add("endTime")
47              .add("sunday")
48              .add("monday")
49              .add("tuesday")
50              .add("wednesday")
51              .add("thursday")
52              .add("friday")
53              .add("saturday")
54              .build();
55  	
56  	private String tkShiftDiffRuleId;
57  	private String location;
58  	private String hrSalGroup;
59  	private String payGrade;
60  	private String earnCode;
61  	private Time beginTime;
62  	private Time endTime;
63  	private BigDecimal minHours;
64  	private boolean sunday;
65  	private boolean monday;
66  	private boolean tuesday;
67  	private boolean wednesday;
68  	private boolean thursday;
69  	private boolean friday;
70  	private boolean saturday;
71  	private String fromEarnGroup;
72  	private String pyCalendarGroup;
73  	private BigDecimal maxGap; // Gap is in HOURS
74  	private String userPrincipalId;
75  
76  	private String hrSalGroupId;
77  	private String hrLocationId;
78  	private String hrPayGradeId;	
79  	
80  	private boolean history;
81  	
82  	private EarnCode earnCodeObj;
83  	private SalaryGroup salaryGroupObj;
84      private EarnCodeGroup fromEarnGroupObj;
85      private Calendar payCalendar;
86      private Location locationObj;
87      private PayGrade payGradeObj;
88      
89  	public String getTkShiftDiffRuleId() {
90  		return tkShiftDiffRuleId;
91  	}
92  
93  	public void setTkShiftDiffRuleId(String tkShiftDiffRuleId) {
94  		this.tkShiftDiffRuleId = tkShiftDiffRuleId;
95  	}
96  
97  	public String getLocation() {
98  		return location;
99  	}
100 
101 	public void setLocation(String location) {
102 		this.location = location;
103 	}
104 
105 	public String getPayGrade() {
106 		return payGrade;
107 	}
108 
109 	public void setPayGrade(String payGrade) {
110 		this.payGrade = payGrade;
111 	}
112 
113 	public String getEarnCode() {
114 		return earnCode;
115 	}
116 
117 	public void setEarnCode(String earnCode) {
118 		this.earnCode = earnCode;
119 	}
120 
121 	public BigDecimal getMinHours() {
122 		return minHours;
123 	}
124 
125 	public void setMinHours(BigDecimal minHours) {
126 		this.minHours = minHours;
127 	}
128 
129     /**
130      * @return The maximum gap, in hours.
131      */
132 	public BigDecimal getMaxGap() {
133 		return maxGap;
134 	}
135 
136     /**
137      *
138      * @param maxGap The number of hours that can be between one time block and another for the rule to consider it part of the same shift.
139      */
140 	public void setMaxGap(BigDecimal maxGap) {
141 		this.maxGap = maxGap;
142 	}
143 
144 	public String getUserPrincipalId() {
145 		return userPrincipalId;
146 	}
147 
148 	public void setUserPrincipalId(String userPrincipalId) {
149 		this.userPrincipalId = userPrincipalId;
150 	}
151 
152 	public String getHrSalGroup() {
153 		return hrSalGroup;
154 	}
155 
156 	public void setHrSalGroup(String hrSalGroup) {
157 		this.hrSalGroup = hrSalGroup;
158 	}
159 
160 	public String getPyCalendarGroup() {
161 		return pyCalendarGroup;
162 	}
163 
164 	public void setPyCalendarGroup(String pyCalendarGroup) {
165 		this.pyCalendarGroup = pyCalendarGroup;
166 	}
167 
168 	public Time getBeginTime() {
169 		return beginTime;
170 	}
171 
172 	public void setBeginTime(Time beginTime) {
173 		this.beginTime = beginTime;
174 	}
175 
176 	public Time getEndTime() {
177 		return endTime;
178 	}
179 
180 	public void setEndTime(Time endTime) {
181 		this.endTime = endTime;
182 	}
183 
184 	public String getFromEarnGroup() {
185 		return fromEarnGroup;
186 	}
187 
188 	public void setFromEarnGroup(String fromEarnGroup) {
189 		this.fromEarnGroup = fromEarnGroup;
190 	}
191 
192 	public boolean isSunday() {
193 		return sunday;
194 	}
195 
196 	public void setSunday(boolean sunday) {
197 		this.sunday = sunday;
198 	}
199 
200 	public boolean isMonday() {
201 		return monday;
202 	}
203 
204 	public void setMonday(boolean monday) {
205 		this.monday = monday;
206 	}
207 
208 	public boolean isTuesday() {
209 		return tuesday;
210 	}
211 
212 	public void setTuesday(boolean tuesday) {
213 		this.tuesday = tuesday;
214 	}
215 
216 	public boolean isWednesday() {
217 		return wednesday;
218 	}
219 
220 	public void setWednesday(boolean wednesday) {
221 		this.wednesday = wednesday;
222 	}
223 
224 	public boolean isThursday() {
225 		return thursday;
226 	}
227 
228 	public void setThursday(boolean thursday) {
229 		this.thursday = thursday;
230 	}
231 
232 	public boolean isFriday() {
233 		return friday;
234 	}
235 
236 	public void setFriday(boolean friday) {
237 		this.friday = friday;
238 	}
239 
240 	public boolean isSaturday() {
241 		return saturday;
242 	}
243 
244 	public void setSaturday(boolean saturday) {
245 		this.saturday = saturday;
246 	}
247 
248 	public EarnCode getEarnCodeObj() {
249 		return earnCodeObj;
250 	}
251 
252 	public void setEarnCodeObj(EarnCode earnCodeObj) {
253 		this.earnCodeObj = earnCodeObj;
254 	}
255 
256 	public SalaryGroup getSalaryGroupObj() {
257 		return salaryGroupObj;
258 	}
259 
260 	public void setSalaryGroupObj(SalaryGroup salaryGroupObj) {
261 		this.salaryGroupObj = salaryGroupObj;
262 	}
263 
264     public EarnCodeGroup getFromEarnGroupObj() {
265         return fromEarnGroupObj;
266     }
267 
268     public void setFromEarnGroupObj(EarnCodeGroup fromEarnGroupObj) {
269         this.fromEarnGroupObj = fromEarnGroupObj;
270     }
271 
272     public Calendar getPayCalendar() {
273         return payCalendar;
274     }
275 
276     public void setPayCalendar(Calendar payCalendar) {
277         this.payCalendar = payCalendar;
278     }
279 
280 	public Location getLocationObj() {
281 		return locationObj;
282 	}
283 
284 	public void setLocationObj(Location locationObj) {
285 		this.locationObj = locationObj;
286 	}
287 
288 	public PayGrade getPayGradeObj() {
289 		return payGradeObj;
290 	}
291 
292 	public void setPayGradeObj(PayGrade payGradeObj) {
293 		this.payGradeObj = payGradeObj;
294 	}
295 
296 	public String getHrSalGroupId() {
297 		return hrSalGroupId;
298 	}
299 
300 	public void setHrSalGroupId(String hrSalGroupId) {
301 		this.hrSalGroupId = hrSalGroupId;
302 	}
303 
304 	public String getHrLocationId() {
305 		return hrLocationId;
306 	}
307 
308 	public void setHrLocationId(String hrLocationId) {
309 		this.hrLocationId = hrLocationId;
310 	}
311 
312 	public String getHrPayGradeId() {
313 		return hrPayGradeId;
314 	}
315 
316 	public void setHrPayGradeId(String hrPayGradeId) {
317 		this.hrPayGradeId = hrPayGradeId;
318 	}
319 
320 	@Override
321 	public String getUniqueKey() {
322 		return location + "_" + hrSalGroup + "_" + payGrade + "_" + earnCode;
323 	}
324 
325 	@Override
326 	public String getId() {
327 		return getTkShiftDiffRuleId();
328 	}
329 
330 	@Override
331 	public void setId(String id) {
332 		setTkShiftDiffRuleId(id);
333 	}
334 
335 	public boolean isHistory() {
336 		return history;
337 	}
338 
339 	public void setHistory(boolean history) {
340 		this.history = history;
341 	}
342 
343 	/* (non-Javadoc)
344 	 * @see java.lang.Object#hashCode()
345 	 */
346 	@Override
347 	public int hashCode() {
348 		final int prime = 31;
349 		int result = 1;
350 		result = prime * result
351 				+ ((earnCode == null) ? 0 : earnCode.hashCode());
352 		result = prime * result
353 				+ ((hrSalGroup == null) ? 0 : hrSalGroup.hashCode());
354 		result = prime * result
355 				+ ((location == null) ? 0 : location.hashCode());
356 		result = prime * result
357 				+ ((payGrade == null) ? 0 : payGrade.hashCode());
358 		return result;
359 	}
360 
361 	/* (non-Javadoc)
362 	 * @see java.lang.Object#equals(java.lang.Object)
363 	 */
364 	@Override
365 	public boolean equals(Object obj) {
366 		if (this == obj)
367 			return true;
368 		if (obj == null)
369 			return false;
370 		if (getClass() != obj.getClass())
371 			return false;
372 		ShiftDifferentialRule other = (ShiftDifferentialRule) obj;
373 		if (earnCode == null) {
374 			if (other.earnCode != null)
375 				return false;
376 		} else if (!earnCode.equals(other.earnCode))
377 			return false;
378 		if (hrSalGroup == null) {
379 			if (other.hrSalGroup != null)
380 				return false;
381 		} else if (!hrSalGroup.equals(other.hrSalGroup))
382 			return false;
383 		if (location == null) {
384 			if (other.location != null)
385 				return false;
386 		} else if (!location.equals(other.location))
387 			return false;
388 		if (payGrade == null) {
389 			if (other.payGrade != null)
390 				return false;
391 		} else if (!payGrade.equals(other.payGrade))
392 			return false;
393 		return true;
394 	}
395 	
396 	
397 
398 }