1 package org.kuali.student.enrollment.class2.courseoffering.dto;
2
3
4
5
6
7
8
9
10 public class ScheduleCalcContainer {
11
12
13 private String aoId;
14 private String scheduleId;
15 private String start;
16 private String end;
17 private String weekdays;
18 private String scheduleType;
19 private String roomCode;
20 private String bldgName;
21 private String bldgCode;
22 private Boolean tbaInd;
23
24 public ScheduleCalcContainer(String aoId, String scheduleId, String scheduleType, String start, String end,String weekdays, String roomCode, String bldgName, String bldgCode, Boolean tbaInd) {
25 this.aoId = aoId;
26 this.end = end;
27 this.scheduleId = scheduleId;
28 this.scheduleType = scheduleType;
29 this.start = start;
30 this.weekdays = weekdays;
31 this.roomCode = roomCode;
32 this.bldgName = bldgName;
33 this.bldgCode = bldgCode;
34 this.tbaInd = tbaInd;
35 }
36
37 public String getAoId() {
38 return aoId;
39 }
40
41 public void setAoId(String aoId) {
42 this.aoId = aoId;
43 }
44
45 public String getEnd() {
46 return end;
47 }
48
49 public void setEnd(String end) {
50 this.end = end;
51 }
52
53 public String getScheduleId() {
54 return scheduleId;
55 }
56
57 public void setScheduleId(String scheduleId) {
58 this.scheduleId = scheduleId;
59 }
60
61 public String getStart() {
62 return start;
63 }
64
65 public void setStart(String start) {
66 this.start = start;
67 }
68
69 public String getWeekdays() {
70 return weekdays;
71 }
72
73 public void setWeekdays(String weekdays) {
74 this.weekdays = weekdays;
75 }
76
77 public String getScheduleType() {
78 return scheduleType;
79 }
80
81 public void setScheduleType(String scheduleType) {
82 this.scheduleType = scheduleType;
83 }
84
85 public String getBldgName() {
86 return bldgName;
87 }
88
89 public void setBldgName(String bldgName) {
90 this.bldgName = bldgName;
91 }
92
93 public String getBldgCode() {
94 return bldgCode;
95 }
96
97 public void setBldgCode(String bldgCode) {
98 this.bldgCode = bldgCode;
99 }
100
101 public String getRoomCode() {
102 return roomCode;
103 }
104
105 public void setRoomCode(String roomCode) {
106 this.roomCode = roomCode;
107 }
108
109 public Boolean getTbaInd() {
110 return tbaInd;
111 }
112
113 public void setTbaInd(Boolean tbaInd) {
114 this.tbaInd = tbaInd;
115 }
116 }