View Javadoc
1   package org.kuali.ole.deliver.calendar.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.util.Date;
6   
7   /**
8    * Created with IntelliJ IDEA.
9    * User: palanivel
10   * Date: 7/20/13
11   * Time: 4:14 PM
12   * To change this template use File | Settings | File Templates.
13   */
14  public class OleCalendarExceptionDate extends OleBaseCalendarWeek{
15      private String calendarExceptionDateId;
16      private String calendarId;
17      private String exceptionDateDesc;
18      private Date date;
19      private String exceptionType;
20  
21      private OleCalendar oleCalendar;
22  
23      public String getExceptionDateDesc() {
24          return exceptionDateDesc;
25      }
26  
27      public void setExceptionDateDesc(String exceptionDateDesc) {
28          this.exceptionDateDesc = exceptionDateDesc;
29      }
30  
31      public String getExceptionType() {
32          return exceptionType;
33      }
34  
35      public void setExceptionType(String exceptionType) {
36          this.exceptionType = exceptionType;
37      }
38  
39      public OleCalendar getOleCalendar() {
40          return oleCalendar;
41      }
42  
43      public void setOleCalendar(OleCalendar oleCalendar) {
44          this.oleCalendar = oleCalendar;
45      }
46  
47      public String getCalendarExceptionDateId() {
48          return calendarExceptionDateId;
49      }
50  
51      public void setCalendarExceptionDateId(String calendarExceptionDateId) {
52          this.calendarExceptionDateId = calendarExceptionDateId;
53      }
54  
55      public String getCalendarId() {
56          return calendarId;
57      }
58  
59      public void setCalendarId(String calendarId) {
60          this.calendarId = calendarId;
61      }
62  
63      public Date getDate() {
64          return date;
65      }
66  
67      public void setDate(Date date) {
68          this.date = date;
69      }
70  }