1 package org.kuali.student.enrollment.class2.autogen.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 Boolean tbaInd;
22
23 public ScheduleCalcContainer(String aoId, String scheduleId, String scheduleType, String start, String end,String weekdays, String roomCode, String bldgName, Boolean tbaInd) {
24 this.aoId = aoId;
25 this.end = end;
26 this.scheduleId = scheduleId;
27 this.scheduleType = scheduleType;
28 this.start = start;
29 this.weekdays = weekdays;
30 this.roomCode = roomCode;
31 this.bldgName = bldgName;
32 this.tbaInd = tbaInd;
33 }
34
35 public String getAoId() {
36 return aoId;
37 }
38
39 public void setAoId(String aoId) {
40 this.aoId = aoId;
41 }
42
43 public String getEnd() {
44 return end;
45 }
46
47 public void setEnd(String end) {
48 this.end = end;
49 }
50
51 public String getScheduleId() {
52 return scheduleId;
53 }
54
55 public void setScheduleId(String scheduleId) {
56 this.scheduleId = scheduleId;
57 }
58
59 public String getStart() {
60 return start;
61 }
62
63 public void setStart(String start) {
64 this.start = start;
65 }
66
67 public String getWeekdays() {
68 return weekdays;
69 }
70
71 public void setWeekdays(String weekdays) {
72 this.weekdays = weekdays;
73 }
74
75 public String getScheduleType() {
76 return scheduleType;
77 }
78
79 public void setScheduleType(String scheduleType) {
80 this.scheduleType = scheduleType;
81 }
82
83 public String getBldgName() {
84 return bldgName;
85 }
86
87 public void setBldgName(String bldgName) {
88 this.bldgName = bldgName;
89 }
90
91 public String getRoomCode() {
92 return roomCode;
93 }
94
95 public void setRoomCode(String roomCode) {
96 this.roomCode = roomCode;
97 }
98
99 public Boolean getTbaInd() {
100 return tbaInd;
101 }
102
103 public void setTbaInd(Boolean tbaInd) {
104 this.tbaInd = tbaInd;
105 }
106 }