View Javadoc
1   package org.kuali.ole.deliver.calendar.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.sql.Timestamp;
6   import java.util.ArrayList;
7   import java.util.List;
8   
9   /**
10   * Created with IntelliJ IDEA.
11   * User: palanivel
12   * Date: 7/20/13
13   * Time: 4:13 PM
14   * To change this template use File | Settings | File Templates.
15   */
16  public class OleCalendarExceptionPeriod extends PersistableBusinessObjectBase {
17      private String calendarExceptionPeriodId;
18      private String calendarId;
19      private Timestamp beginDate;
20      private Timestamp endDate;
21      private String exceptionPeriodType;
22      private String calendarExceptionPeriodDesc;
23      private OleCalendar oleCalendar;
24      private List<OleCalendarExceptionPeriodWeek> oleCalendarExceptionPeriodWeekList = new ArrayList<>();
25  
26  
27      public String getExceptionPeriodType() {
28          return exceptionPeriodType;
29      }
30  
31      public void setExceptionPeriodType(String exceptionPeriodType) {
32          this.exceptionPeriodType = exceptionPeriodType;
33      }
34  
35      public String getCalendarExceptionPeriodDesc() {
36          return calendarExceptionPeriodDesc;
37      }
38  
39      public void setCalendarExceptionPeriodDesc(String calendarExceptionPeriodDesc) {
40          this.calendarExceptionPeriodDesc = calendarExceptionPeriodDesc;
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 getCalendarExceptionPeriodId() {
52          return calendarExceptionPeriodId;
53      }
54  
55      public void setCalendarExceptionPeriodId(String calendarExceptionPeriodId) {
56          this.calendarExceptionPeriodId = calendarExceptionPeriodId;
57      }
58  
59      public String getCalendarId() {
60          return calendarId;
61      }
62  
63      public void setCalendarId(String calendarId) {
64          this.calendarId = calendarId;
65      }
66  
67      public Timestamp getBeginDate() {
68          return beginDate;
69      }
70  
71      public void setBeginDate(Timestamp beginDate) {
72          this.beginDate = beginDate;
73      }
74  
75      public Timestamp getEndDate() {
76          return endDate;
77      }
78  
79      public void setEndDate(Timestamp endDate) {
80          this.endDate = endDate;
81      }
82  
83      public List<OleCalendarExceptionPeriodWeek> getOleCalendarExceptionPeriodWeekList() {
84          return oleCalendarExceptionPeriodWeekList;
85      }
86  
87      public void setOleCalendarExceptionPeriodWeekList(List<OleCalendarExceptionPeriodWeek> oleCalendarExceptionPeriodWeekList) {
88          this.oleCalendarExceptionPeriodWeekList = oleCalendarExceptionPeriodWeekList;
89      }
90  }