Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
MinorDiscipline |
|
| 1.0;1 |
1 | package org.kuali.student.r2.lum.program.infc; | |
2 | ||
3 | ||
4 | import java.util.List; | |
5 | import org.kuali.student.r2.common.infc.IdNamelessEntity; | |
6 | ||
7 | /** | |
8 | * Created by IntelliJ IDEA. User: sambitpatnaik Date: 10/27/11 Time: 10:38 AM | |
9 | * To change this template use File | Settings | File Templates. | |
10 | */ | |
11 | public interface MinorDiscipline extends IdNamelessEntity { | |
12 | ||
13 | /** | |
14 | * Identifier of the credential program under which the minor belongs | |
15 | * | |
16 | * @Name Credential Program Id | |
17 | * @required | |
18 | */ | |
19 | public String getCredentialProgramId(); | |
20 | ||
21 | /** | |
22 | * Identifiers for Minor Discipline Program Requirements. | |
23 | * | |
24 | * @Name Program Requirement Ids | |
25 | */ | |
26 | public List<String> getProgramRequirements(); | |
27 | ||
28 | ||
29 | } |