| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| DocumentCategory |
|
| 1.0;1 |
| 1 | package org.kuali.student.r2.core.document.infc; | |
| 2 | ||
| 3 | import org.kuali.student.r2.common.infc.KeyEntity; | |
| 4 | ||
| 5 | import java.util.Date; | |
| 6 | ||
| 7 | /** | |
| 8 | * | |
| 9 | * Detailed information about a document category. | |
| 10 | * | |
| 11 | * @Version 2.0 | |
| 12 | * @Author Sri komandur@uw.edu | |
| 13 | * | |
| 14 | */ | |
| 15 | public interface DocumentCategory extends KeyEntity { | |
| 16 | ||
| 17 | /** | |
| 18 | * Date and time that this document category became effective. This is | |
| 19 | * a similar concept to the effective date on enumerated values. When an | |
| 20 | * expiration date has been specified,this field must be less than or | |
| 21 | * equal to the expiration date. | |
| 22 | * | |
| 23 | * @name Effective Date | |
| 24 | * | |
| 25 | */ | |
| 26 | public Date getEffectiveDate(); | |
| 27 | ||
| 28 | /** | |
| 29 | * Date and time that this document category expires. This is a similar | |
| 30 | * concept to the expiration date on enumerated values. If specified, this | |
| 31 | * should be greater than or equal to the effective date. If this field is | |
| 32 | * not specified, then no expiration date has been currently defined and | |
| 33 | * should automatically be considered greater than the effective date. | |
| 34 | * | |
| 35 | * @name Expiration Date | |
| 36 | * | |
| 37 | */ | |
| 38 | public Date getExpirationDate(); | |
| 39 | ||
| 40 | } |