Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ResultValue |
|
| 1.0;1 |
1 | package org.kuali.student.r2.lum.classI.lrc; | |
2 | ||
3 | import java.io.Serializable; | |
4 | import java.util.Date; | |
5 | import java.util.List; | |
6 | ||
7 | import org.w3c.dom.Element; | |
8 | ||
9 | /** | |
10 | * @author sambit | |
11 | */ | |
12 | ||
13 | public interface ResultValue extends Serializable { | |
14 | ||
15 | /** | |
16 | * Result Value Name string Name of the result value. This is likely related | |
17 | * to the type, value and/or scale, but this is not required. | |
18 | */ | |
19 | public String getName(); | |
20 | ||
21 | /** | |
22 | * Result Value string Value of the result. Typically corresponds with the | |
23 | * short coded form of the result(ex. "A", "4.0", "97.0", "B.S" etc.) | |
24 | * scaleKey Scale Identifier scaleKey | |
25 | */ | |
26 | public String getValue(); | |
27 | ||
28 | /** | |
29 | * Rank string Rank of the result value within the scale. Standards around | |
30 | * uniqueness and meaning of value are described in the information about | |
31 | * the scale. | |
32 | */ | |
33 | public String getRank(); | |
34 | ||
35 | /** | |
36 | * Effective Date dateTime Date and time that this result value became | |
37 | * effective. This is a similar concept to the effective date on enumerated | |
38 | * values. When an expiration date has been specified, this field must be | |
39 | * less than or equal to the expiration date. | |
40 | */ | |
41 | public Date getEffectiveDate(); | |
42 | ||
43 | /** | |
44 | * Expiration Date dateTime Date and time that this result value expires. | |
45 | * This is a similar concept to the expiration date on enumerated values. If | |
46 | * specified, this should be greater than or equal to the effective date. If | |
47 | * this field is not specified, then no expiration date has been currently | |
48 | * defined and should automatically be considered greater than the effective | |
49 | * date. | |
50 | */ | |
51 | public Date getExpirationDate(); | |
52 | ||
53 | public List<Element> get_futureElements(); | |
54 | ||
55 | public String getId(); | |
56 | ||
57 | } |