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.workschedule; 017 018 import java.sql.Time; 019 020 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 021 022 public class WorkScheduleEntry extends PersistableBusinessObjectBase { 023 024 /** 025 * 026 */ 027 private static final long serialVersionUID = 1L; 028 private Long hrWorkScheduleEntryId; 029 private Long hrWorkSchedule; 030 private Long indexOfDay; 031 private Time beginTime; 032 private Time endTime; 033 034 public Long getIndexOfDay() { 035 return indexOfDay; 036 } 037 038 039 public void setIndexOfDay(Long indexOfDay) { 040 this.indexOfDay = indexOfDay; 041 } 042 043 044 public Time getBeginTime() { 045 return beginTime; 046 } 047 048 049 public void setBeginTime(Time beginTime) { 050 this.beginTime = beginTime; 051 } 052 053 054 public Time getEndTime() { 055 return endTime; 056 } 057 058 059 public void setEndTime(Time endTime) { 060 this.endTime = endTime; 061 } 062 063 064 public Long getHrWorkScheduleEntryId() { 065 return hrWorkScheduleEntryId; 066 } 067 068 069 public void setHrWorkScheduleEntryId(Long hrWorkScheduleEntryId) { 070 this.hrWorkScheduleEntryId = hrWorkScheduleEntryId; 071 } 072 073 074 public Long getHrWorkSchedule() { 075 return hrWorkSchedule; 076 } 077 078 079 public void setHrWorkSchedule(Long hrWorkSchedule) { 080 this.hrWorkSchedule = hrWorkSchedule; 081 } 082 }