001 /** 002 * Copyright 2004-2013 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.hr.time.holidaycalendar; 017 018 import java.math.BigDecimal; 019 import java.sql.Date; 020 021 import org.kuali.hr.core.KPMEConstants; 022 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 023 024 public class HolidayCalendarDateEntry extends PersistableBusinessObjectBase { 025 public static final String CACHE_NAME = KPMEConstants.APPLICATION_NAMESPACE_CODE + "/" + "HolidayCalendarDateEntry"; 026 027 /** 028 * 029 */ 030 private static final long serialVersionUID = 1L; 031 private String hrHolidayCalendarDateId; 032 private Date holidayDate; 033 private String holidayDescr; 034 private String hrHolidayCalendarId; 035 private BigDecimal holidayHours; 036 037 038 public String getHrHolidayCalendarDateId() { 039 return hrHolidayCalendarDateId; 040 } 041 042 043 public void setHrHolidayCalendarDateId(String hrHolidayCalendarDateId) { 044 this.hrHolidayCalendarDateId = hrHolidayCalendarDateId; 045 } 046 047 048 public Date getHolidayDate() { 049 return holidayDate; 050 } 051 052 053 public void setHolidayDate(Date holidayDate) { 054 this.holidayDate = holidayDate; 055 } 056 057 058 public String getHolidayDescr() { 059 return holidayDescr; 060 } 061 062 063 public void setHolidayDescr(String holidayDescr) { 064 this.holidayDescr = holidayDescr; 065 } 066 067 068 public String getHrHolidayCalendarId() { 069 return hrHolidayCalendarId; 070 } 071 072 073 public void setHrHolidayCalendarId(String hrHolidayCalendarId) { 074 this.hrHolidayCalendarId = hrHolidayCalendarId; 075 } 076 077 078 public BigDecimal getHolidayHours() { 079 return holidayHours; 080 } 081 082 083 public void setHolidayHours(BigDecimal holidayHours) { 084 this.holidayHours = holidayHours; 085 } 086 087 }