1 package org.kuali.ole.deliver.calendar.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5
6
7
8
9
10
11
12 public class OleCalendarExceptionPeriodWeek extends PersistableBusinessObjectBase {
13
14 private String calendarWeekId;
15 private String calendarExceptionPeriodId;
16 private String openTime;
17 private String closeTime;
18 private String startDay;
19 private String endDay;
20
21 private String openTimeSession;
22 private String closeTimeSession;
23 private OleCalendarExceptionPeriod oleCalendarExceptionPeriod;
24
25
26 private boolean eachDayOfExceptionWeek;
27
28 public boolean isEachDayOfExceptionWeek() {
29 return eachDayOfExceptionWeek;
30 }
31
32 public void setEachDayOfExceptionWeek(boolean eachDayOfExceptionWeek) {
33 this.eachDayOfExceptionWeek = eachDayOfExceptionWeek;
34 }
35
36
37 public OleCalendarExceptionPeriod getOleCalendarExceptionPeriod() {
38 return oleCalendarExceptionPeriod;
39 }
40
41 public void setOleCalendarExceptionPeriod(OleCalendarExceptionPeriod oleCalendarExceptionPeriod) {
42 this.oleCalendarExceptionPeriod = oleCalendarExceptionPeriod;
43 }
44
45 public String getOpenTimeSession() {
46 return openTimeSession;
47 }
48
49 public void setOpenTimeSession(String openTimeSession) {
50 this.openTimeSession = openTimeSession;
51 }
52
53 public String getCloseTimeSession() {
54 return closeTimeSession;
55 }
56
57 public void setCloseTimeSession(String closeTimeSession) {
58 this.closeTimeSession = closeTimeSession;
59 }
60
61
62 public String getCalendarWeekId() {
63 return calendarWeekId;
64 }
65
66 public void setCalendarWeekId(String calendarWeekId) {
67 this.calendarWeekId = calendarWeekId;
68 }
69
70 public String getCalendarExceptionPeriodId() {
71 return calendarExceptionPeriodId;
72 }
73
74 public void setCalendarExceptionPeriodId(String calendarExceptionPeriodId) {
75 this.calendarExceptionPeriodId = calendarExceptionPeriodId;
76 }
77
78 public String getOpenTime() {
79 return openTime;
80 }
81
82 public void setOpenTime(String openTime) {
83 this.openTime = openTime;
84 }
85
86 public String getCloseTime() {
87 return closeTime;
88 }
89
90 public void setCloseTime(String closeTime) {
91 this.closeTime = closeTime;
92 }
93
94 public String getStartDay() {
95 return startDay;
96 }
97
98 public void setStartDay(String startDay) {
99 this.startDay = startDay;
100 }
101
102 public String getEndDay() {
103 return endDay;
104 }
105
106 public void setEndDay(String endDay) {
107 this.endDay = endDay;
108 }
109 }