Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
QueueEntry |
|
| 1.0;1 |
1 | package org.kuali.student.r2.core.queue.infc; | |
2 | ||
3 | import java.util.Date; | |
4 | import java.util.List; | |
5 | ||
6 | public interface QueueEntry { | |
7 | ||
8 | ||
9 | public String getEntryRefObjectId(); | |
10 | ||
11 | public String getEntryRefObjectTypeKey(); | |
12 | ||
13 | public Date getCheckInDate(); | |
14 | ||
15 | public Integer getPosition(); | |
16 | ||
17 | } |