Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
LoLoRelation |
|
| 1.0;1 |
1 | package org.kuali.student.r2.lum.lo.infc; | |
2 | ||
3 | import org.kuali.student.r2.common.infc.Relationship; | |
4 | ||
5 | public interface LoLoRelation extends Relationship { | |
6 | ||
7 | /** | |
8 | * Unique identifier for a learning objective record. This is the "From" or | |
9 | * "Parent" in the relation. | |
10 | */ | |
11 | public String getLoId(); | |
12 | ||
13 | /** | |
14 | * Unique identifier for a learning objective record. This is the "To" or | |
15 | * "Child" of the relation. | |
16 | */ | |
17 | public String getRelatedLoId(); | |
18 | ||
19 | } |