1 package org.kuali.ole.deliver.calendar.bo;
2
3
4
5
6
7
8
9
10 public class OleCalendarExceptionPeriodWeek extends OleBaseCalendarWeek{
11
12 private String calendarWeekId;
13 private String calendarExceptionPeriodId;
14
15 private OleCalendarExceptionPeriod oleCalendarExceptionPeriod;
16
17
18 private boolean eachDayOfExceptionWeek;
19
20 public boolean isEachDayOfExceptionWeek() {
21 return eachDayOfExceptionWeek;
22 }
23
24 public void setEachDayOfExceptionWeek(boolean eachDayOfExceptionWeek) {
25 this.eachDayOfExceptionWeek = eachDayOfExceptionWeek;
26 }
27
28
29 public OleCalendarExceptionPeriod getOleCalendarExceptionPeriod() {
30 return oleCalendarExceptionPeriod;
31 }
32
33 public void setOleCalendarExceptionPeriod(OleCalendarExceptionPeriod oleCalendarExceptionPeriod) {
34 this.oleCalendarExceptionPeriod = oleCalendarExceptionPeriod;
35 }
36
37
38 public String getCalendarWeekId() {
39 return calendarWeekId;
40 }
41
42 public void setCalendarWeekId(String calendarWeekId) {
43 this.calendarWeekId = calendarWeekId;
44 }
45
46 public String getCalendarExceptionPeriodId() {
47 return calendarExceptionPeriodId;
48 }
49
50 public void setCalendarExceptionPeriodId(String calendarExceptionPeriodId) {
51 this.calendarExceptionPeriodId = calendarExceptionPeriodId;
52 }
53
54
55 }