Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
LuiPersonRelationTransaction |
|
| 1.0;1 |
1 | package org.kuali.student.enrollment.lpr.infc; | |
2 | ||
3 | import java.util.List; | |
4 | ||
5 | import org.kuali.student.r2.common.infc.IdEntity; | |
6 | ||
7 | /** | |
8 | * The LuiPersonRelationTransaction represents an object to capture an overall | |
9 | * transaction request. The requesting person ID is the person who creates this | |
10 | * overall request. There are multiple transaction items, | |
11 | * {@link LuiPersonRelationTransactionItem}, in a single overall transaction. | |
12 | * | |
13 | * @author Kuali Student Team (sambit) | |
14 | */ | |
15 | public interface LuiPersonRelationTransaction extends IdEntity { | |
16 | /** | |
17 | * The person who requested for this LPR - differenet from the person on the | |
18 | * relation. | |
19 | * | |
20 | * @return | |
21 | */ | |
22 | public String getRequestingPersonId(); | |
23 | ||
24 | /** | |
25 | * Transaction item for this | |
26 | * | |
27 | * @return | |
28 | */ | |
29 | List<? extends LuiPersonRelationTransactionItem> getLprTransactionItems(); | |
30 | ||
31 | } |