Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
LprTransaction |
|
| 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 LprTransactionItem}, in a single overall transaction. | |
12 | * | |
13 | * @author Kuali Student Team (sambit) | |
14 | */ | |
15 | public interface LprTransaction extends IdEntity { | |
16 | /** | |
17 | * The person who requested for this transaction | |
18 | * | |
19 | * Note this does not have to be the same as the person on the transaction | |
20 | * item. It could be, for example, an administrator creating registrations | |
21 | * on behalf of the student. | |
22 | * | |
23 | * @required | |
24 | * @name Requesting Person Id | |
25 | */ | |
26 | public String getRequestingPersonId(); | |
27 | ||
28 | ||
29 | /** | |
30 | * The ATP for which this transaction applies. | |
31 | * | |
32 | * This constrains which lui's can be manipulated by this transaction's items. | |
33 | * The items may only refer to this ATP or nested ATPs. | |
34 | * | |
35 | * @required | |
36 | * @name ATP Id | |
37 | */ | |
38 | public String getAtpId(); | |
39 | ||
40 | /** | |
41 | * Transaction item for this | |
42 | * | |
43 | * @name LPR Transaction Items | |
44 | */ | |
45 | List<? extends LprTransactionItem> getLprTransactionItems(); | |
46 | ||
47 | } |