Coverage Report - org.kuali.rice.krms.impl.util.KrmsImplConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
KrmsImplConstants
0%
0/2
N/A
0
KrmsImplConstants$PropertyNames
0%
0/2
N/A
0
KrmsImplConstants$PropertyNames$Action
0%
0/1
N/A
0
KrmsImplConstants$PropertyNames$Agenda
0%
0/1
N/A
0
KrmsImplConstants$PropertyNames$BaseAttribute
0%
0/1
N/A
0
KrmsImplConstants$PropertyNames$Context
0%
0/1
N/A
0
KrmsImplConstants$PropertyNames$KrmsAttributeDefinition
0%
0/1
N/A
0
KrmsImplConstants$PropertyNames$Rule
0%
0/1
N/A
0
KrmsImplConstants$WebPaths
0%
0/1
N/A
0
 
 1  
 /**
 2  
  * Copyright 2005-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.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  
 package org.kuali.rice.krms.impl.util;
 17  
 
 18  
 /**
 19  
  * Created by IntelliJ IDEA.
 20  
  * User: gilesp
 21  
  * Date: 8/24/11
 22  
  * Time: 12:34 PM
 23  
  * To change this template use File | Settings | File Templates.
 24  
  */
 25  0
 public class KrmsImplConstants {
 26  
 
 27  
 
 28  0
     public final static class WebPaths {
 29  
         public static final String AGENDA_EDITOR_PATH = "krmsAgendaEditor";
 30  
     }
 31  
 
 32  
     /**
 33  
      * This class contains constants associated with the KRMS Repository
 34  
      *
 35  
      * @author Kuali Rice Team (rice.collab@kuali.org)
 36  
      *
 37  
      */
 38  0
     public static final class PropertyNames {
 39  
 
 40  0
         public static final class Action {
 41  
             public static final String ACTION_ID ="actionId";
 42  
         }
 43  
 
 44  0
         public static final class Agenda {
 45  
             public static final String ID = "id";
 46  
             public static final String AGENDA_ID ="agendaId";
 47  
         }
 48  
 
 49  0
         public static final class Context {
 50  
             public static final String CONTEXT_ID ="contextId";
 51  
             public static final String NAME = "name";
 52  
             public static final String NAMESPACE = "namespace";
 53  
             public static final String ATTRIBUTE_BOS = "attributeBos";
 54  
         }
 55  
 
 56  0
         public static final class Rule {
 57  
             public static final String RULE_ID ="ruleId";
 58  
         }
 59  
 
 60  0
         public static final class KrmsAttributeDefinition {
 61  
             public static final String NAME = "name";
 62  
             public static final String NAMESPACE = "namespace";
 63  
         }
 64  
 
 65  0
         public static final class BaseAttribute {
 66  
             public static final String ATTRIBUTE_DEFINITION_ID = "attributeDefinitionId";
 67  
             public static final String VALUE = "value";
 68  
             public static final String ATTRIBUTE_DEFINITION = "attributeDefinition";
 69  
         }
 70  
 
 71  
     }
 72  
 
 73  
 }