| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| LoCategory |
|
| 1.0;1 |
| 1 | package org.kuali.student.r2.lum.lo.infc; | |
| 2 | ||
| 3 | import org.kuali.student.r2.common.infc.IdEntity; | |
| 4 | ||
| 5 | import java.util.Date; | |
| 6 | ||
| 7 | /** | |
| 8 | * Detailed information about a learning objective category. | |
| 9 | * | |
| 10 | * @author Kuali Student Team | |
| 11 | */ | |
| 12 | public interface LoCategory extends IdEntity { | |
| 13 | ||
| 14 | /** | |
| 15 | * Unique identifier for a learning objective repository. Once set in | |
| 16 | * creation, this is immutable. | |
| 17 | * | |
| 18 | * @name LO Repository | |
| 19 | */ | |
| 20 | public String getLoRepositoryKey(); | |
| 21 | ||
| 22 | /** | |
| 23 | * Date and time that this learning objective category became effective. | |
| 24 | * This is a similar concept to the effective date on enumerated values. | |
| 25 | * When an expiration date has been specified, this field must be less than | |
| 26 | * or equal to the expiration date. | |
| 27 | * | |
| 28 | * @name Effectvie Date | |
| 29 | */ | |
| 30 | public Date getEffectiveDate(); | |
| 31 | ||
| 32 | /** | |
| 33 | * Date and time that this learning objective category expires. This is a | |
| 34 | * similar concept to the expiration date on enumerated values. If | |
| 35 | * specified, this should be greater than or equal to the effective date. If | |
| 36 | * this field is not specified, then no expiration date has been currently | |
| 37 | * defined and should automatically be considered greater than the effective | |
| 38 | * date. | |
| 39 | * | |
| 40 | * @name Expiration Date | |
| 41 | */ | |
| 42 | public Date getExpirationDate(); | |
| 43 | ||
| 44 | } |