Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
RequestOption |
|
| 1.0;1 |
1 | package org.kuali.student.enrollment.lpr.infc; | |
2 | ||
3 | import org.kuali.student.r2.common.infc.HasId; | |
4 | ||
5 | /** | |
6 | * Specifies the request options in a LPR transaction. The options can be used | |
7 | * to create specific kinds of LPR relation. | |
8 | * | |
9 | * @author Kuali Student Team (sambitpatnaik) | |
10 | */ | |
11 | public interface RequestOption extends HasId{ | |
12 | /** | |
13 | * The option value data type of the request option e.g., Boolean, String | |
14 | * etc. | |
15 | * | |
16 | * @return | |
17 | */ | |
18 | public String getOptionKey(); | |
19 | ||
20 | /** | |
21 | * This value of the option | |
22 | * | |
23 | * @return | |
24 | */ | |
25 | public String getOptionValue(); | |
26 | ||
27 | } |