Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
CourseWaitlist |
|
| 1.0;1 |
1 | /** | |
2 | * Copyright 2010 The Kuali Foundation Licensed under the Educational Community | |
3 | * License, Version 2.0 (the "License"); you may not use this file except in | |
4 | * compliance with the License. You may obtain a copy of the License at | |
5 | * http://www.osedu.org/licenses/ECL-2.0 Unless required by applicable law or | |
6 | * agreed to in writing, software distributed under the License is distributed | |
7 | * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | |
8 | * express or implied. See the License for the specific language governing | |
9 | * permissions and limitations under the License. | |
10 | */ | |
11 | ||
12 | package org.kuali.student.enrollment.waitlist.course.infc; | |
13 | ||
14 | import java.util.List; | |
15 | ||
16 | import org.kuali.student.r2.common.infc.IdEntity; | |
17 | ||
18 | /** | |
19 | * Represents a list of students who wish to register to the reg group but | |
20 | * cannot because of seat unavailability. A waitlist is a Queue at the class I | |
21 | * level. As more seats become available the students in the waitlist are moved | |
22 | * to the course. The waitlist entries are LPRs which are in a state denoting | |
23 | * that the student is in a waitlist. There are three waitlist-clearing | |
24 | * strategies - automatic, semi-automatic and manual which are part of the | |
25 | * CourseWaitlistOption. A single waitlist is created for a particular course | |
26 | * offering. The waitlist may vary by each reg group in the course offering; | |
27 | * this is captured by the CourseWaitlistOption. | |
28 | * | |
29 | * @Author tom | |
30 | * @Since Tue May 10 14:22:34 EDT 2011 | |
31 | */ | |
32 | ||
33 | public interface CourseWaitlist extends IdEntity { | |
34 | ||
35 | /** | |
36 | * Name: Offering Id The Id of the related offering. Note: don't yet know | |
37 | * what kind of offering this is, but it does map to a LUI Id. | |
38 | */ | |
39 | public String getCourseOfferingId(); | |
40 | ||
41 | /** | |
42 | * Gets all the course waitlist entries in the wailtist. | |
43 | * | |
44 | * @return | |
45 | */ | |
46 | public List<String> getCourseWailtistEntryIds(); | |
47 | ||
48 | ||
49 | } |