001 /**
002 * Copyright 2005-2012 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 */
016 package org.kuali.rice.krms.impl.util;
017
018 public class KrmsImplConstants {
019
020
021 public final static class WebPaths {
022 public static final String AGENDA_INQUIRY_PATH = "krmsAgendaInquiry";
023 public static final String AGENDA_EDITOR_PATH = "krmsAgendaEditor";
024 }
025
026 /**
027 * This class contains constants associated with the KRMS Repository
028 *
029 * @author Kuali Rice Team (rice.collab@kuali.org)
030 *
031 */
032 public static final class PropertyNames {
033
034 public static final class Action {
035 public static final String ACTION_ID ="actionId";
036 }
037
038 public static final class Agenda {
039 public static final String ID = "id";
040 public static final String AGENDA_ID ="agendaId";
041 }
042
043 public static final class Context {
044 public static final String CONTEXT_ID ="contextId";
045 public static final String NAME = "name";
046 public static final String NAMESPACE = "namespace";
047 public static final String ATTRIBUTE_BOS = "attributeBos";
048 }
049
050 public static final class Rule {
051 public static final String RULE_ID ="ruleId";
052 }
053
054 public static final class KrmsAttributeDefinition {
055 public static final String NAME = "name";
056 public static final String NAMESPACE = "namespace";
057 }
058
059 public static final class BaseAttribute {
060 public static final String ATTRIBUTE_DEFINITION_ID = "attributeDefinitionId";
061 public static final String VALUE = "value";
062 public static final String ATTRIBUTE_DEFINITION = "attributeDefinition";
063 }
064
065 }
066
067 }