Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
GradeRoster |
|
| 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.grading.infc; | |
13 | ||
14 | import java.util.List; | |
15 | ||
16 | import org.kuali.student.r2.common.infc.IdEntity; | |
17 | ||
18 | /** | |
19 | * Information about a Grading Roster | |
20 | * | |
21 | * @author Kuali Student Team (Kamal) | |
22 | */ | |
23 | ||
24 | public interface GradeRoster extends IdEntity { | |
25 | ||
26 | /** | |
27 | * This method gets the list of grade roster entries which are associated | |
28 | * with this grade roster. | |
29 | * | |
30 | * @return | |
31 | */ | |
32 | List<String> getGradeRosterEntryIds(); | |
33 | ||
34 | /** | |
35 | * This method gets the list of graders that are associated with this grade | |
36 | * roster | |
37 | * | |
38 | * @return | |
39 | */ | |
40 | List<String> getGraderIds(); | |
41 | ||
42 | /** | |
43 | * This method gets the course offering that the roster belongs to. A course | |
44 | * offering might contain one-many rosters | |
45 | * | |
46 | * @return | |
47 | */ | |
48 | public String getCourseOfferingId(); | |
49 | ||
50 | /** | |
51 | * This method returns a list of activity offering Ids associated with this | |
52 | * roster. | |
53 | * | |
54 | * @return | |
55 | */ | |
56 | public List<String> getActivityOfferingIds(); | |
57 | ||
58 | } |