| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ProgramCodeAssembly | 
 | 
 | 1.0;1 | 
| 1 |  /* | |
| 2 |   * Copyright 2010 The Kuali Foundation Licensed under the | |
| 3 |   * Educational Community License, Version 2.0 (the "License"); you may | |
| 4 |   * not use this file except in compliance with the License. You may | |
| 5 |   * obtain a copy of the License at | |
| 6 |   * | |
| 7 |   * http://www.osedu.org/licenses/ECL-2.0 | |
| 8 |   * | |
| 9 |   * Unless required by applicable law or agreed to in writing, | |
| 10 |   * software distributed under the License is distributed on an "AS IS" | |
| 11 |   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | |
| 12 |   * or implied. See the License for the specific language governing | |
| 13 |   * permissions and limitations under the License. | |
| 14 |   */ | |
| 15 | ||
| 16 |  package org.kuali.student.lum.program.dto.assembly; | |
| 17 | ||
| 18 | public interface ProgramCodeAssembly extends ProgramCommonAssembly { | |
| 19 |      /** | |
| 20 |       * CIP 2000 Code for the Program | |
| 21 |       */ | |
| 22 |      public String getCip2000Code() ; | |
| 23 | public void setCip2000Code(String cip2000Code); | |
| 24 | ||
| 25 |      /** | |
| 26 |       * CIP 2010 Code for the Program | |
| 27 |       */ | |
| 28 |      public String getCip2010Code(); | |
| 29 | public void setCip2010Code(String cip2010Code); | |
| 30 | ||
| 31 |      /** | |
| 32 |       * HEGIS Code for the Program | |
| 33 |       */ | |
| 34 |      public String getHegisCode(); | |
| 35 | public void setHegisCode(String hegisCode) ; | |
| 36 | ||
| 37 |      /** | |
| 38 |       * University specific classification e.g Major(Bacc), Specialization | |
| 39 |       */ | |
| 40 |      public String getUniversityClassification(); | |
| 41 | public void setUniversityClassification(String universityClassification); | |
| 42 | ||
| 43 | ||
| 44 |      /** | |
| 45 |       * Specifies if the Program is Selective Major, Limited Enrollment program or Selective Admissions | |
| 46 |       */ | |
| 47 |      public String getSelectiveEnrollmentCode(); | |
| 48 | public void setSelectiveEnrollmentCode(String selectiveEnrollmentCode); | |
| 49 | } |