Coverage Report - org.kuali.student.lum.lu.ui.tools.client.configuration.ToolsConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
ToolsConstants
0%
0/2
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.ui.tools.client.configuration;
 17  
 
 18  
 
 19  
 
 20  
 /**
 21  
  * This is a description of what this class does - hjohnson don't forget to fill this in. 
 22  
  * 
 23  
  *
 24  
  * 
 25  
  * @author Kuali Student Team (kuali-student@googlegroups.com)
 26  
  *
 27  
  */
 28  0
 public class ToolsConstants {
 29  
 
 30  0
         public static String SECTION_CREATE_CLU_SET = "New CLU Set";
 31  
         
 32  
     // Message keys for top-level section label lookup
 33  
     public static final String NEW_CLU_SET_LABEL_KEY = "cluSetInformation";
 34  
     public static final String NEW_CLU_SET = "cluSetNew";
 35  
     public static final String NEW_CLU_SET_INFO = "cluSetNewInformation";
 36  
     public static final String NEW_CLU_SET_CONTENT = "cluSetContent";
 37  
     public static final String NEW_CLU_SET_CONTENT_APPROVED_COURSE = "cluSetApprovedCourses";
 38  
     public static final String NEW_CLU_SET_CONTENT_PROPOSED_COURSE = "cluSetProposedCourses";
 39  
     public static final String NEW_CLU_SET_CONTENT_RANGE = "cluSetCourseRange";
 40  
     public static final String NEW_CLU_SET_CONTENT_CLUSET = "clusetSubCluSet";
 41  
     public static final String EDIT_CLU_SET = "cluSetEditCluSet";
 42  
     public static final String VIEW_CLU_SET = "cluSetViewCluSet";
 43  
     public static final String EDIT_CLU_SET_INFO = "cluSetEditInformation";
 44  
     public static final String ORGANIZATION = "cluSetOrganization";
 45  
     public static final String DEFINE_CLUSET = "cluSetDefine";
 46  
     public static final String TITLE = "cluSetTitle";
 47  
     public static final String DESCRIPTION = "cluSetDescription";
 48  
     public static final String EFFECTIVE_DATE = "cluSetEffectiveDate";
 49  
     public static final String EXPIRATION_DATE = "cluSetExpirationDate";
 50  
     public static final String CONTENT = "cluSetContent";
 51  
     public static final String CONTENT_DIRECTIONS = "contentDirections";
 52  
     public static final String CLU_SET_NAME ="cluSetName";
 53  
     
 54  
     // Field Keys
 55  
     public static final String SEARCH_CLU_SET = "cluset/clusets";
 56  
     public static final String SEARCH_COURSE_SET = "courseSet/clusets";
 57  
     public static final String SEARCH_COURSE = "findCourse";
 58  
     public static final String CLU_SET_ID = "id";
 59  
     public static final String CLU_SET_ORGANIZATION_FIELD = "organization";
 60  
     public static final String CLU_SET_NAME_FIELD = "name";
 61  
     public static final String CLU_SET_DESCRIPTION_FIELD = "description";
 62  
     public static final String CLU_SET_EFF_DATE_FIELD = "effectiveDate";
 63  
     public static final String CLU_SET_EXP_DATE_FIELD = "expirationDate";
 64  
     public static final String CLU_SET_ALL_CLUS_FIELD = "allClus";
 65  
     public static final String CLU_SET_APPROVED_CLUS_FIELD = "approvedClus";
 66  
     public static final String CLU_SET_PROPOSED_CLUS_FIELD = "proposedClus";
 67  
     public static final String CLU_SET_CLU_SETS_FIELD = "clusets";
 68  
     public static final String CLU_SET_CLU_SET_RANGE_FIELD = "clusetRange";
 69  
     public static final String CLU_SET_CLU_SET_RANGE_EDIT_FIELD = "clusetRangeEdit";
 70  
     public static final String CLU_SET_CLUSET_RANGE_VIEW_DETAILS_FIELD = "cluSetRangeViewDetails";
 71  
     public static final String CLU_SET_TYPE_FIELD = "type";
 72  
     
 73  
     // Swappable Section Keys
 74  
     public static final String CLU_SET_SWAP_APPROVED_CLUS = "activatedClus";
 75  
     public static final String CLU_SET_SWAP_PROPOSED_CLUS = "proposedClus";
 76  
     public static final String CLU_SET_SWAP_CLU_SETS = "clusets";
 77  
     public static final String CLU_SET_SWAP_CLU_SET_RANGE = "clusetRange";
 78  
     
 79  
     
 80  
 }
 81