Coverage Report - org.kuali.student.r2.common.util.constants.TypeServiceConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
TypeServiceConstants
0%
0/3
N/A
0
 
 1  
 /**
 2  
  * Copyright 2011 The Kuali Foundation 
 3  
  *
 4  
  * Licensed under the * Educational Community License, Version 2.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.osedu.org/licenses/ECL-2.0
 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
 13  
  * implied. See the License for the specific language governing
 14  
  * permissions and limitations under the License.
 15  
  */
 16  
 
 17  
 package org.kuali.student.r2.common.util.constants;
 18  
 
 19  
 import org.kuali.student.r2.common.constants.CommonServiceConstants;
 20  
 import org.kuali.student.r2.core.type.dto.TypeInfo;
 21  
 import org.kuali.student.r2.core.type.dto.TypeTypeRelationInfo;
 22  
 
 23  
 /**
 24  
  * This class holds the constants used by the type service
 25  
  *
 26  
  * @author tom
 27  
  */
 28  0
 public class TypeServiceConstants {
 29  
 
 30  
     /**
 31  
      * Reference Object URIs
 32  
      */
 33  
     public static final String SERVICE_NAME_LOCAL_PART = "type";
 34  
     public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + SERVICE_NAME_LOCAL_PART;
 35  
     public static final String REF_OBJECT_URI_DEFAULT = NAMESPACE + "COMMON/DEFAULT";
 36  0
     public static final String REF_OBJECT_URI_TYPE = NAMESPACE + "/" + TypeInfo.class.getSimpleName();
 37  0
     public static final String REF_OBJECT_URI_TYPE_TYPE_RELATION = NAMESPACE + "/" + TypeTypeRelationInfo.class.getSimpleName();
 38  
     
 39  
     /**
 40  
      * Type type relationship types
 41  
      */
 42  
     public static final String TYPE_TYPE_RELATION_ALLOWED_TYPE_KEY = "kuali.type.type.relation.type.allowed";
 43  
     public static final String TYPE_TYPE_RELATION_CONTAINS_TYPE_KEY = "kuali.type.type.relation.type.contains";
 44  
     public static final String TYPE_TYPE_RELATION_GROUP_TYPE_KEY = "kuali.type.type.relation.type.group";
 45  
     /**
 46  
      * states
 47  
      */
 48  
     public static final String TYPE_TYPE_RELATION_ACTIVE_STATE_KEY = "kuali.type.type.relation.state.active";
 49  
     public static final String TYPE_TYPE_RELATION_INACTIVE_STATE_KEY = "kuali.type.type.relation.state.inactive";
 50  
 }