View Javadoc
1   package org.kuali.ole.deliver.calendar.bo;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: palanivel
6    * Date: 7/20/13
7    * Time: 4:14 PM
8    * To change this template use File | Settings | File Templates.
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  }