Coverage Report - org.kuali.student.lum.lu.LUConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
LUConstants
0%
0/1
N/A
0
 
 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.lu;
 17  
 
 18  
 
 19  
 /**
 20  
  * This is a description of what this class does - hjohnson don't forget to fill this in. 
 21  
  * 
 22  
  *
 23  
  * 
 24  
  * @author Kuali Student Team (kuali-student@googlegroups.com)
 25  
  *
 26  
  */
 27  0
 public class LUConstants {
 28  
 
 29  
 
 30  
     public final static String COURSE_GROUP_NAME = "course";
 31  
     public final static String PROPOSAL_TYPE_COURSE_CREATE = "kuali.proposal.type.course.create";
 32  
     public final static String PROPOSAL_TYPE_COURSE_MODIFY = "kuali.proposal.type.course.modify";
 33  
     public final static String PROPOSAL_TYPE_COURSE_CREATE_ADMIN = "kuali.proposal.type.course.create.admin";    
 34  
     public final static String PROPOSAL_TYPE_COURSE_MODIFY_ADMIN = "kuali.proposal.type.course.modify.admin";  
 35  
     public final static String CLU_TYPE_CREDIT_COURSE = "kuali.lu.type.CreditCourse";
 36  
     public final static String PROGRAM_GROUP_NAME = "program";    
 37  
     public final static String PROPOSAL_TYPE_PROGRAM_CREATE = "kuali.proposal.type.program.create";
 38  
     public final static String CLU_TYPE_CREDIT_PROGRAM = "kuali.lu.type.CreditProgram";    
 39  
     
 40  
         // found this in https://test.kuali.org/confluence/display/KULSTU/LuConfig.Types.LuLuRelationType
 41  
     public final static String LU_LU_RELATION_TYPE_HAS_COURSE_FORMAT = "luLuRelationType.hasCourseFormat";
 42  
     public final static String LU_LU_RELATION_TYPE_CONTAINS = "luLuRelationType.contains";
 43  
     public final static String LU_LU_RELATION_TYPE_CROSS_LISTED = "luLuRelationType.alias";
 44  
     public final static String LU_LU_RELATION_TYPE_JOINTLY_OFFERED = "luLuRelationType.colocated";
 45  
 
 46  
     // Dictionary definitions
 47  
     public static final String STRUCTURE_CLU_INFO = "org.kuali.student.lum.lu.dto.CluInfo";
 48  
     public static final String STRUCTURE_CLU_ID_INFO = "org.kuali.student.lum.lu.dto.CluIdentifierInfo";
 49  
     public static final String STRUCTURE_PROPOSAL_INFO = "org.kuali.student.lum.proposal.dto.ProposalInfo";
 50  
 
 51  
         public static final String REF_DOC_RELATION_PROPOSAL_TYPE = "kuali.org.RefObjectType.ProposalInfo";
 52  
 
 53  
 
 54  
 
 55  
 }
 56