Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ActivityRegistration |
|
| 1.0;1 |
1 | package org.kuali.student.enrollment.courseregistration.infc; | |
2 | ||
3 | import org.kuali.student.enrollment.courseoffering.infc.ActivityOffering; | |
4 | import org.kuali.student.r2.common.infc.Relationship; | |
5 | ||
6 | /** | |
7 | * An ActivityRegistration represents the activities in the course the student | |
8 | * has registered for. For a given course there will be multiple activity | |
9 | * offerings. For each course registration there will be at least one activity | |
10 | * registration. | |
11 | * | |
12 | * @author Kuali Student Team (sambit) | |
13 | */ | |
14 | public interface ActivityRegistration extends Relationship { | |
15 | ||
16 | /** | |
17 | * Returns the activity offering id for the activity registration. | |
18 | * | |
19 | * @return | |
20 | */ | |
21 | public ActivityOffering getActivityOffering(); | |
22 | ||
23 | /** | |
24 | * Student id for this Activity Registration. | |
25 | * | |
26 | * @return | |
27 | */ | |
28 | public String getStudentId(); | |
29 | ||
30 | } |