Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
RegGroupRegistration |
|
| 1.0;1 |
1 | package org.kuali.student.enrollment.registration.course.infc; | |
2 | ||
3 | import org.kuali.student.r2.common.infc.IdEntity; | |
4 | import org.kuali.student.r2.common.infc.Relationship; | |
5 | ||
6 | /** | |
7 | * | |
8 | * A reg group registration returns the | |
9 | * | |
10 | * @author Kuali Student Team (sambit) | |
11 | * | |
12 | */ | |
13 | public interface RegGroupRegistration extends Relationship{ | |
14 | ||
15 | ||
16 | /** | |
17 | * Returns the reg group id for the RegGroupRegistration. | |
18 | * | |
19 | * @return | |
20 | */ | |
21 | public String getRegGroupId(); | |
22 | ||
23 | /** | |
24 | * This method returns the student id for the RegGroupRegistration. | |
25 | * | |
26 | * @return | |
27 | */ | |
28 | public String getStudentId(); | |
29 | ||
30 | } |