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