Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
LuiPersonRelationTransactionItemResult |
|
| 1.0;1 |
1 | package org.kuali.student.enrollment.lpr.infc; | |
2 | ||
3 | import java.util.List; | |
4 | ||
5 | ||
6 | public interface LuiPersonRelationTransactionItemResult{ | |
7 | ||
8 | /** | |
9 | * | |
10 | * The resulting LPR for this LPR transaction item if its successful. | |
11 | * | |
12 | * @return | |
13 | */ | |
14 | public String getResultingLprId(); | |
15 | ||
16 | /** | |
17 | * | |
18 | * The messages for the transaction - success/failure/warning. | |
19 | * | |
20 | * @return | |
21 | */ | |
22 | public List<String> getMessages(); | |
23 | ||
24 | /** | |
25 | * The status of the transaction. | |
26 | * | |
27 | * @return | |
28 | */ | |
29 | public String getStatus(); | |
30 | ||
31 | } | |
32 |