Coverage Report - org.kuali.student.core.organization.ui.client.configuration.OrgConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
OrgConstants
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.core.organization.ui.client.configuration;
 17  
 
 18  0
 public class OrgConstants {
 19  
     
 20  
     public static final String ORG_GROUP = "org";
 21  
 
 22  
     //Create Org Labels
 23  
     public static final String ORG_TYPE_LABEL_KEY = "orgType";
 24  
     public static final String ORG_NAME_LABEL_KEY = "orgName";
 25  
     public static final String ORG_ABBR_LABEL_KEY = "orgAbbr";
 26  
     public static final String ORG_DESC_LABEL_KEY = "orgDesc";
 27  
     public static final String ORG_EFF_DATE_LABEL_KEY = "orgEffDate";
 28  
     public static final String ORG_EXP_DATE_LABEL_KEY = "orgExpDate";
 29  
     
 30  
     //Create Positions Labels
 31  
     public static final String POS_RELATION_LABEL_KEY = "orgPersonRelationTypeKey";
 32  
     public static final String POS_TITLE_LABEL_KEY = "orgPersonRelationTitle";
 33  
     public static final String POS_DESC_LABEL_KEY = "orgPersonRelationDesc";
 34  
     public static final String POS_MIN_PPL_LABEL_KEY = "orgPersonRelationMinPpl";
 35  
     public static final String POS_MAX_PPL_LABEL_KEY = "orgPersonRelationMaxPpl";
 36  
     
 37  
     //Create Relationships Labels
 38  
     public static final String REL_ORGNAME_LABEL_KEY = "orgOrgRelationName";
 39  
     public static final String REL_ORGID_LABEL_KEY = "orgOrgRelationId";
 40  
     public static final String REL_TYPE_LABEL_KEY = "orgOrgRelationType";
 41  
     public static final String REL_EFF_DATE_LABEL_KEY = "orgOrgRelationEffDate";
 42  
     public static final String REL_EXP_DATE_LABEL_KEY = "orgOrgRelationExpDate";
 43  
     public static final String REL_NOTE_LABEL_KEY = "orgOrgRelationNote";
 44  
     public static final String REL_SECTION = "orgOrgRelationSection";
 45  
     
 46  
     //Create Org Relation Labels
 47  
     public static final String ORG_LABEL_KEY = "orgOrgRelation";
 48  
     public static final String ORG_ID_LABEL_KEY = "orgRelationId";
 49  
     public static final String ORG_RELATION_LABEL_KEY = "orgRelation";
 50  
     public static final String ORG_NOTE_LABEL_KEY = "orgNote";
 51  
 
 52  
 }