| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CourseJoint |
|
| 1.0;1 |
| 1 | package org.kuali.student.r2.lum.course.infc; | |
| 2 | ||
| 3 | import org.kuali.student.r2.common.infc.Entity; | |
| 4 | ||
| 5 | /** | |
| 6 | * * Information about course joints. | |
| 7 | * | |
| 8 | * @author Kuali Student Team (sambitpa@kuali.org) | |
| 9 | */ | |
| 10 | public interface CourseJoint extends Entity{ | |
| 11 | /** | |
| 12 | * | |
| 13 | */ | |
| 14 | public String getCourseNumberSuffix(); | |
| 15 | ||
| 16 | /** | |
| 17 | * Abbreviated name of the Course | |
| 18 | */ | |
| 19 | public String getCourseTitle(); | |
| 20 | ||
| 21 | /** | |
| 22 | * The Study Subject Area is used to identify the area of study associated | |
| 23 | * with the credit course. It may be a general study area (e.g. Chemistry) | |
| 24 | * or very specific (e.g. Naval Architecture). | |
| 25 | */ | |
| 26 | public String getSubjectArea(); | |
| 27 | ||
| 28 | /** | |
| 29 | * Unique identifier for a Course. | |
| 30 | */ | |
| 31 | public String getCourseId(); | |
| 32 | ||
| 33 | /** | |
| 34 | * Unique identifier for a Course Joints. | |
| 35 | */ | |
| 36 | public String getRelationId(); | |
| 37 | } |