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.workschedule;
17  
18  import java.sql.Time;
19  
20  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
21  
22  public class WorkScheduleEntry extends PersistableBusinessObjectBase {
23  
24  	/**
25  	 *
26  	 */
27  	private static final long serialVersionUID = 1L;
28  	private Long hrWorkScheduleEntryId;
29  	private Long hrWorkSchedule;
30  	private Long indexOfDay;
31  	private Time beginTime;
32  	private Time endTime;
33  
34  	public Long getIndexOfDay() {
35  		return indexOfDay;
36  	}
37  
38  
39  	public void setIndexOfDay(Long indexOfDay) {
40  		this.indexOfDay = indexOfDay;
41  	}
42  
43  
44  	public Time getBeginTime() {
45  		return beginTime;
46  	}
47  
48  
49  	public void setBeginTime(Time beginTime) {
50  		this.beginTime = beginTime;
51  	}
52  
53  
54  	public Time getEndTime() {
55  		return endTime;
56  	}
57  
58  
59  	public void setEndTime(Time endTime) {
60  		this.endTime = endTime;
61  	}
62  
63  
64  	public Long getHrWorkScheduleEntryId() {
65  		return hrWorkScheduleEntryId;
66  	}
67  
68  
69  	public void setHrWorkScheduleEntryId(Long hrWorkScheduleEntryId) {
70  		this.hrWorkScheduleEntryId = hrWorkScheduleEntryId;
71  	}
72  
73  
74  	public Long getHrWorkSchedule() {
75  		return hrWorkSchedule;
76  	}
77  
78  
79  	public void setHrWorkSchedule(Long hrWorkSchedule) {
80  		this.hrWorkSchedule = hrWorkSchedule;
81  	}
82  }