View Javadoc

1   /**
2    * Copyright 2004-2013 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.hr.time.holidaycalendar;
17  
18  import java.math.BigDecimal;
19  import java.sql.Date;
20  
21  import org.kuali.hr.core.KPMEConstants;
22  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
23  
24  public class HolidayCalendarDateEntry extends PersistableBusinessObjectBase {
25      public static final String CACHE_NAME = KPMEConstants.APPLICATION_NAMESPACE_CODE + "/" + "HolidayCalendarDateEntry";
26  	
27  	/**
28  	 * 
29  	 */
30  	private static final long serialVersionUID = 1L;
31  	private String hrHolidayCalendarDateId;
32  	private Date holidayDate;
33  	private String holidayDescr;
34  	private String hrHolidayCalendarId;
35  	private BigDecimal holidayHours;
36  
37  
38  	public String getHrHolidayCalendarDateId() {
39  		return hrHolidayCalendarDateId;
40  	}
41  
42  
43  	public void setHrHolidayCalendarDateId(String hrHolidayCalendarDateId) {
44  		this.hrHolidayCalendarDateId = hrHolidayCalendarDateId;
45  	}
46  
47  
48  	public Date getHolidayDate() {
49  		return holidayDate;
50  	}
51  
52  
53  	public void setHolidayDate(Date holidayDate) {
54  		this.holidayDate = holidayDate;
55  	}
56  
57  
58  	public String getHolidayDescr() {
59  		return holidayDescr;
60  	}
61  
62  
63  	public void setHolidayDescr(String holidayDescr) {
64  		this.holidayDescr = holidayDescr;
65  	}
66  
67  
68  	public String getHrHolidayCalendarId() {
69  		return hrHolidayCalendarId;
70  	}
71  
72  
73  	public void setHrHolidayCalendarId(String hrHolidayCalendarId) {
74  		this.hrHolidayCalendarId = hrHolidayCalendarId;
75  	}
76  
77  
78  	public BigDecimal getHolidayHours() {
79  		return holidayHours;
80  	}
81  
82  
83  	public void setHolidayHours(BigDecimal holidayHours) {
84  		this.holidayHours = holidayHours;
85  	}
86  
87  }