1 package org.kuali.ole.deliver.calendar.bo;
2
3 import org.kuali.rice.krad.document.TransactionalDocumentBase;
4
5 import java.sql.Timestamp;
6
7
8
9
10
11
12
13
14 public class OleCalendarDocument extends TransactionalDocumentBase {
15
16 private Timestamp beginDate;
17 private Timestamp endDate;
18 private String openTime;
19 private String closeTime;
20 private String startDay;
21 private String endDay;
22 private String openTimeSession;
23 private String closeTimeSession;
24
25
26 public String getStartDay() {
27 return startDay;
28 }
29
30 public void setStartDay(String startDay) {
31 this.startDay = startDay;
32 }
33
34 public String getEndDay() {
35 return endDay;
36 }
37
38 public void setEndDay(String endDay) {
39 this.endDay = endDay;
40 }
41
42 public String getOpenTimeSession() {
43 return openTimeSession;
44 }
45
46 public void setOpenTimeSession(String openTimeSession) {
47 this.openTimeSession = openTimeSession;
48 }
49
50 public String getCloseTimeSession() {
51 return closeTimeSession;
52 }
53
54 public void setCloseTimeSession(String closeTimeSession) {
55 this.closeTimeSession = closeTimeSession;
56 }
57
58 public Timestamp getBeginDate() {
59 return beginDate;
60 }
61
62 public void setBeginDate(Timestamp beginDate) {
63 this.beginDate = beginDate;
64 }
65
66 public Timestamp getEndDate() {
67 return endDate;
68 }
69
70 public void setEndDate(Timestamp endDate) {
71 this.endDate = endDate;
72 }
73
74 public String getOpenTime() {
75 return openTime;
76 }
77
78 public void setOpenTime(String openTime) {
79 this.openTime = openTime;
80 }
81
82 public String getCloseTime() {
83 return closeTime;
84 }
85
86 public void setCloseTime(String closeTime) {
87 this.closeTime = closeTime;
88 }
89 }