| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ResultOption |
|
| 1.0;1 |
| 1 | package org.kuali.student.r2.lum.classI.lrc; | |
| 2 | ||
| 3 | import java.io.Serializable; | |
| 4 | import java.util.Date; | |
| 5 | ||
| 6 | ||
| 7 | public interface ResultOption extends Serializable { | |
| 8 | ||
| 9 | ||
| 10 | /** | |
| 11 | * Unique identifier for a result usage type. | |
| 12 | */ | |
| 13 | public String getResultUsageTypeKey(); | |
| 14 | ||
| 15 | /** | |
| 16 | * Unique identifier for a result component. | |
| 17 | */ | |
| 18 | public String getResultComponentId(); | |
| 19 | ||
| 20 | /** | |
| 21 | * Date and time that this result option became effective. This is a similar | |
| 22 | * concept to the effective date on enumerated values. When an expiration | |
| 23 | * date has been specified, this field must be less than or equal to the | |
| 24 | * expiration date. | |
| 25 | */ | |
| 26 | public Date getEffectiveDate(); | |
| 27 | ||
| 28 | /** | |
| 29 | * Date and time that this result option expires. This is a similar concept | |
| 30 | * to the expiration date on enumerated values. If specified, this must be | |
| 31 | * greater than or equal to the effective date. If this field is not | |
| 32 | * specified, then no expiration date has been currently defined and should | |
| 33 | * automatically be considered greater than the effective date. | |
| 34 | */ | |
| 35 | public Date getExpirationDate(); | |
| 36 | ||
| 37 | ||
| 38 | /** | |
| 39 | * Unique identifier for a result option. This is optional, due to the | |
| 40 | * identifier being set at the time of creation. Once the result option has | |
| 41 | * been created, this should be seen as required. | |
| 42 | */ | |
| 43 | public String getId(); | |
| 44 | } |