Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
AbstractEntitiesCollection |
|
| 1.0;1 |
1 | package org.kuali.student.r2.core.collection.infc; | |
2 | ||
3 | import java.util.List; | |
4 | ||
5 | ||
6 | public interface AbstractEntitiesCollection { | |
7 | ||
8 | public List<CollectionEntry> getCollectionEntries(); | |
9 | ||
10 | public String getRefObjectId(); | |
11 | ||
12 | public String getRefObjectTypeKey(); | |
13 | ||
14 | ||
15 | } |