Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Scale |
|
| 1.0;1 |
1 | package org.kuali.student.r2.lum.lrc; | |
2 | ||
3 | import java.io.Serializable; | |
4 | import java.util.Date; | |
5 | import java.util.Map; | |
6 | ||
7 | import org.kuali.student.common.dto.RichTextInfo; | |
8 | ||
9 | public interface Scale extends Serializable { | |
10 | ||
11 | /** | |
12 | * Date and time that this scale became effective. This is a similar concept to the effective date on enumerated values. When an expiration date has been specified, this field must be less than or equal to the expiration date. | |
13 | */ | |
14 | public Date getEffectiveDate() ; | |
15 | /** | |
16 | * Date and time that this scale expires. This is a similar concept to the expiration date on enumerated values. If specified, this should be greater than or equal to the effective date. If this field is not specified, then no expiration date has been currently defined and should automatically be considered greater than the effective date. | |
17 | */ | |
18 | public Date getExpirationDate() ; | |
19 | ||
20 | /** | |
21 | * Unique identifier for a scale. | |
22 | */ | |
23 | public String getId() ; | |
24 | ||
25 | } |