| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CommonWithCoreProgram |
|
| 1.0;1 |
| 1 | package org.kuali.student.r2.lum.program.infc; | |
| 2 | ||
| 3 | import org.kuali.student.r2.common.infc.RichText; | |
| 4 | ||
| 5 | import java.util.List; | |
| 6 | ||
| 7 | /* | |
| 8 | * Fields that are common with the credential program | |
| 9 | * | |
| 10 | * @author Kuali Student Team (Sambit) | |
| 11 | */ | |
| 12 | public interface CommonWithCoreProgram extends CommonWithCredentialProgram { | |
| 13 | ||
| 14 | /** | |
| 15 | * An URL for additional information about this program. | |
| 16 | * | |
| 17 | * @name reference URL | |
| 18 | */ | |
| 19 | public String getReferenceURL(); | |
| 20 | ||
| 21 | /** | |
| 22 | * Narrative description of this program that will show up in Catalog | |
| 23 | */ | |
| 24 | public RichText getCatalogDescr(); | |
| 25 | ||
| 26 | /** | |
| 27 | * List of catalog targets where this program's information will be published. | |
| 28 | * | |
| 29 | * Examples might include on-line catalog, printed catalog, departmental catalog, | |
| 30 | * or freshman catalog. | |
| 31 | */ | |
| 32 | public List<String> getCatalogPublicationTargets(); | |
| 33 | } |