View Javadoc
1   package org.kuali.ole.deliver.calendar.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: palanivel
8    * Date: 7/20/13
9    * Time: 4:13 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class OleCalendarWeek extends PersistableBusinessObjectBase {
13      private String calendarWeekId;
14      private String calendarId;
15      private String openTime;
16      private String closeTime;
17      private String startDay;
18      private String endDay;
19      private String openTimeSession;
20      private String closeTimeSession;
21      private OleCalendar oleCalendar;
22  
23      private String exceptionPeriodType;
24  
25      public String getExceptionPeriodType() {
26          return exceptionPeriodType;
27      }
28  
29      public void setExceptionPeriodType(String exceptionPeriodType) {
30          this.exceptionPeriodType = exceptionPeriodType;
31      }
32  
33      private boolean eachDayWeek;
34  
35      public boolean isEachDayWeek() {
36          return eachDayWeek;
37      }
38  
39      public void setEachDayWeek(boolean eachDayWeek) {
40          this.eachDayWeek = eachDayWeek;
41      }
42  
43      public OleCalendar getOleCalendar() {
44          return oleCalendar;
45      }
46  
47      public void setOleCalendar(OleCalendar oleCalendar) {
48          this.oleCalendar = oleCalendar;
49      }
50  
51      public String getOpenTimeSession() {
52          return openTimeSession;
53      }
54  
55      public void setOpenTimeSession(String openTimeSession) {
56          this.openTimeSession = openTimeSession;
57      }
58  
59      public String getCloseTimeSession() {
60          return closeTimeSession;
61      }
62  
63      public void setCloseTimeSession(String closeTimeSession) {
64          this.closeTimeSession = closeTimeSession;
65      }
66  
67      public String getCalendarWeekId() {
68          return calendarWeekId;
69      }
70  
71      public void setCalendarWeekId(String calendarWeekId) {
72          this.calendarWeekId = calendarWeekId;
73      }
74  
75      public String getCalendarId() {
76          return calendarId;
77      }
78  
79      public void setCalendarId(String calendarId) {
80          this.calendarId = calendarId;
81      }
82  
83      public String getOpenTime() {
84          return openTime;
85      }
86  
87      public void setOpenTime(String openTime) {
88          this.openTime = openTime;
89      }
90  
91      public String getCloseTime() {
92          return closeTime;
93      }
94  
95      public void setCloseTime(String closeTime) {
96          this.closeTime = closeTime;
97      }
98  
99      public String getStartDay() {
100         return startDay;
101     }
102 
103     public void setStartDay(String startDay) {
104         this.startDay = startDay;
105     }
106 
107     public String getEndDay() {
108         return endDay;
109     }
110 
111     public void setEndDay(String endDay) {
112         this.endDay = endDay;
113     }
114 }