View Javadoc

1   package org.kuali.student.r2.lum.program.infc;
2   
3   import java.util.List;
4   
5   import org.kuali.student.r2.common.infc.IdNamelessEntity;
6   
7   /**
8    * Detailed information about a single honors program
9    * 
10   * @author Kuali Student Team (sambitpa@kuali.org)
11   */
12  public interface HonorsProgram extends IdNamelessEntity {
13      /**
14       * Identifier of the credential program under which the honors belongs
15       * 
16       * @name Credential Program Id
17       * @required
18       */
19      public String getCredentialProgramId();
20  
21      /**
22       * Identifiers of the requirements associated with this honors program.
23       * 
24       * @name Honors Program Requirement Ids
25       */
26      public List<String> getProgramRequirements();
27  
28  }