001/**
002 * Copyright 2005-2016 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krms.impl.util;
017
018public class KrmsImplConstants {
019
020    /**
021     * Prefix used to identify parameterized term specification ids in lists that otherwise contain
022     * regular old term ids.
023     */
024    public static final String PARAMETERIZED_TERM_PREFIX = "parameterized:";
025
026    public final static class WebPaths {
027        public static final String AGENDA_INQUIRY_PATH = "krmsAgendaInquiry";
028        public static final String AGENDA_EDITOR_PATH = "krmsAgendaEditor";
029    }
030
031    /**
032     * This class contains constants associated with the KRMS Repository
033     *
034     * @author Kuali Rice Team (rice.collab@kuali.org)
035     *
036     */
037    public static final class PropertyNames {
038
039        public static final class Action {
040            public static final String ACTION_ID ="actionId";
041        }
042
043        public static final class Agenda {
044            public static final String ID = "id";
045            public static final String AGENDA_ID ="agendaId";
046        }
047
048        public static final class Context {
049            public static final String CONTEXT_ID ="contextId";
050            public static final String NAME = "name";
051            public static final String NAMESPACE = "namespace";
052            public static final String ATTRIBUTE_BOS = "attributeBos";
053        }
054
055        public static final class Rule {
056            public static final String RULE_ID ="ruleId";
057        }
058
059        public static final class KrmsAttributeDefinition {
060            public static final String NAME = "name";
061            public static final String NAMESPACE = "namespace";
062        }
063
064        public static final class BaseAttribute {
065            public static final String ATTRIBUTE_DEFINITION_ID = "attributeDefinitionId";
066            public static final String VALUE = "value";
067            public static final String ATTRIBUTE_DEFINITION = "attributeDefinition";
068        }
069
070    }
071    
072}