Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
CourseRegistration |
|
| 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 | * This is a description of what this class does - sambit don't forget to fill this in. | |
9 | * | |
10 | * @author Kuali Student Team (sambit) | |
11 | * | |
12 | */ | |
13 | public interface CourseRegistration extends Relationship{ | |
14 | ||
15 | /** | |
16 | * | |
17 | * Returns the Course offering id for this course registration. | |
18 | * | |
19 | * @return | |
20 | */ | |
21 | public String getCourseOfferingId(); | |
22 | ||
23 | /** | |
24 | * | |
25 | * Returns the student id for the course registration. | |
26 | * | |
27 | * @return | |
28 | */ | |
29 | public String getStudentId(); | |
30 | ||
31 | ||
32 | /** | |
33 | * | |
34 | * Returns the credit count for this registration | |
35 | * | |
36 | * @return | |
37 | */ | |
38 | public String getCreditCount(); | |
39 | ||
40 | } |