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 
 3  
  *
 4  
  * Licensed under the the Educational Community License, Version 1.0
 5  
  * (the "License"); you may not use this file except in compliance
 6  
  * with the License.  You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl1.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 
 17  
 package org.kuali.student.lum.lu;
 18  
 
 19  
 
 20  
 /**
 21  
  * This is a description of what this class does - hjohnson don't forget to fill this in.
 22  
  *
 23  
  * @author Kuali Student Team (kuali-student@googlegroups.com)
 24  
  */
 25  0
 public class LUConstants {
 26  
 
 27  
 
 28  
     public final static String COURSE_GROUP_NAME = "course";
 29  
     public final static String PROPOSAL_TYPE_COURSE_CREATE = "kuali.proposal.type.course.create";
 30  
     public final static String CLU_TYPE_CREDIT_COURSE = "kuali.lu.type.CreditCourse";
 31  
     public final static String PROGRAM_GROUP_NAME = "program";
 32  
     public final static String PROPOSAL_TYPE_PROGRAM_CREATE = "kuali.proposal.type.program.create";
 33  
     public final static String CLU_TYPE_CREDIT_PROGRAM = "kuali.lu.type.CreditProgram";
 34  
 
 35  
     // found this in https://test.kuali.org/confluence/display/KULSTU/LuConfig.Types.LuLuRelationType
 36  
     public final static String LU_LU_RELATION_TYPE_HAS_COURSE_FORMAT = "luLuRelationType.hasCourseFormat";
 37  
     public final static String LU_LU_RELATION_TYPE_CONTAINS = "luLuRelationType.contains";
 38  
     public final static String LU_LU_RELATION_TYPE_CROSS_LISTED = "luLuRelationType.alias";
 39  
     public final static String LU_LU_RELATION_TYPE_JOINTLY_OFFERED = "luLuRelationType.colocated";
 40  
 
 41  
     // Dictionary definitions
 42  
     public static final String STRUCTURE_CLU_INFO = "org.kuali.student.lum.lu.dto.CluInfo";
 43  
     public static final String STRUCTURE_CLU_ID_INFO = "org.kuali.student.lum.lu.dto.CluIdentifierInfo";
 44  
     public static final String STRUCTURE_PROPOSAL_INFO = "org.kuali.student.lum.proposal.dto.ProposalInfo";
 45  
 
 46  
     public static final String REF_DOC_RELATION_PROPOSAL_TYPE = "kuali.org.RefObjectType.ProposalInfo";
 47  
 
 48  
 
 49  
 }
 50