1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package org.kuali.mobility.academics.entity;
16
17 import java.util.List;
18
19
20
21
22
23 public interface Section {
24
25
26
27
28 String getAvailableSeats();
29
30
31
32
33
34 String getClassTopic();
35
36
37
38
39 String getCombinedSectionId();
40
41
42
43
44 String getCreditHours();
45
46
47
48
49 String getEnrollmentCapacity();
50
51
52
53
54 String getEnrollmentStatus();
55
56
57
58
59 String getEnrollmentTotal();
60
61
62
63
64 List<? extends SectionMeeting> getMeetings();
65
66
67
68
69 String getNumber();
70
71
72
73
74 String getSessionDescription();
75
76
77
78
79 String getComponentShort();
80
81
82
83
84 String getComponentDescription();
85
86
87
88
89
90
91
92
93 String getAdditionalInfo();
94
95
96
97
98
99 String getCourseDescription();
100
101
102
103
104
105 String getType();
106
107
108
109
110 String getTypeDescription();
111
112
113
114
115 String getWaitCapacity();
116
117
118
119
120 String getWaitTotal();
121
122
123
124
125 void setAvailableSeats(String availableSeats);
126
127
128
129
130
131 void setAdditionalInfo(String additionalInfo);
132
133
134
135
136 void setClassTopic(String classTopic);
137
138
139
140
141 void setCombinedSectionId(String combinedSectionId);
142
143
144
145
146 void setCreditHours(String creditHours);
147
148
149
150
151 void setEnrollmentCapacity(String enrollmentCapacity);
152
153
154
155
156 void setEnrollmentStatus(String enrollmentStatus);
157
158
159
160
161 void setEnrollmentTotal(String enrollmentTotal);
162
163
164
165
166 void setMeetings(List<? extends SectionMeeting> meetings);
167
168
169
170
171 void setNumber(String number);
172
173
174
175
176 void setSessionDescription(String sessionDescription);
177
178
179
180
181
182 void setComponentShort(String componentShort);
183
184
185
186
187
188
189 void setCourseDescription(String courseDescription);
190
191
192
193
194
195
196 void setComponentDescription(String componentDescription);
197
198
199
200
201 void setType(String type);
202
203
204
205
206 void setTypeDescription(String typeDescription);
207
208
209
210
211 void setWaitCapacity(String waitCapacity);
212
213
214
215
216 void setWaitTotal(String waitTotal);
217
218 String getCatalogNumber();
219 String getSubjectId();
220 String getTermId();
221
222 void setCatalogNumber( String catalogNumber );
223 void setSubjectId( String subjectId );
224 void setTermId( String termId );
225
226 String getSectionUID();
227 void setSectionUID( String uid );
228
229 String getCourseTitle();
230 void setCourseTitle(String courseTitle);
231 }