Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
RegResponse |
|
| 1.0;1 |
1 | package org.kuali.student.enrollment.registration.course.infc; | |
2 | ||
3 | ||
4 | import java.util.List; | |
5 | ||
6 | ||
7 | import org.kuali.student.r2.common.infc.OperationStatus; | |
8 | ||
9 | public interface RegResponse { | |
10 | /** | |
11 | * This method gets the item operation status info for the registration response | |
12 | * | |
13 | * @return | |
14 | */ | |
15 | public OperationStatus getOperationStatus (); | |
16 | ||
17 | /** | |
18 | * The status of registration request id associated with this registration request. | |
19 | * | |
20 | * @return | |
21 | */ | |
22 | public String getRegRequestId(); | |
23 | ||
24 | /** | |
25 | * | |
26 | * The individual registration response items for the registration response | |
27 | * | |
28 | * @return | |
29 | */ | |
30 | public List<? extends RegResponseItem> getRegResponseItems(); | |
31 | ||
32 | } |