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
9
10
11
12
13
14 public class OleCalendarExceptionDate extends PersistableBusinessObjectBase {
15 private String calendarExceptionDateId;
16 private String calendarId;
17 private String exceptionDateDesc;
18 private Date date;
19 private String exceptionType;
20 private String openTime;
21 private String closeTime;
22 private String openTimeSession;
23 private String closeTimeSession;
24 private OleCalendar oleCalendar;
25
26 public String getExceptionDateDesc() {
27 return exceptionDateDesc;
28 }
29
30 public void setExceptionDateDesc(String exceptionDateDesc) {
31 this.exceptionDateDesc = exceptionDateDesc;
32 }
33
34 public String getExceptionType() {
35 return exceptionType;
36 }
37
38 public void setExceptionType(String exceptionType) {
39 this.exceptionType = exceptionType;
40 }
41
42 public OleCalendar getOleCalendar() {
43 return oleCalendar;
44 }
45
46 public void setOleCalendar(OleCalendar oleCalendar) {
47 this.oleCalendar = oleCalendar;
48 }
49
50 public String getOpenTimeSession() {
51 return openTimeSession;
52 }
53
54 public void setOpenTimeSession(String openTimeSession) {
55 this.openTimeSession = openTimeSession;
56 }
57
58 public String getCloseTimeSession() {
59 return closeTimeSession;
60 }
61
62 public void setCloseTimeSession(String closeTimeSession) {
63 this.closeTimeSession = closeTimeSession;
64 }
65
66 public String getCalendarExceptionDateId() {
67 return calendarExceptionDateId;
68 }
69
70 public void setCalendarExceptionDateId(String calendarExceptionDateId) {
71 this.calendarExceptionDateId = calendarExceptionDateId;
72 }
73
74 public String getCalendarId() {
75 return calendarId;
76 }
77
78 public void setCalendarId(String calendarId) {
79 this.calendarId = calendarId;
80 }
81
82 public Date getDate() {
83 return date;
84 }
85
86 public void setDate(Date date) {
87 this.date = date;
88 }
89
90 public String getOpenTime() {
91 return openTime;
92 }
93
94 public void setOpenTime(String openTime) {
95 this.openTime = openTime;
96 }
97
98 public String getCloseTime() {
99 return closeTime;
100 }
101
102 public void setCloseTime(String closeTime) {
103 this.closeTime = closeTime;
104 }
105 }