001 /**
002 * Copyright 2005-2011 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 /**
019 * Created by IntelliJ IDEA.
020 * User: gilesp
021 * Date: 8/24/11
022 * Time: 12:34 PM
023 * To change this template use File | Settings | File Templates.
024 */
025 public class KrmsImplConstants {
026
027
028 public final static class WebPaths {
029 public static final String AGENDA_EDITOR_PATH = "krmsAgendaEditor";
030 }
031
032 /**
033 * This class contains constants associated with the KRMS Repository
034 *
035 * @author Kuali Rice Team (rice.collab@kuali.org)
036 *
037 */
038 public static final class PropertyNames {
039
040 public static final class Action {
041 public static final String ACTION_ID ="actionId";
042 }
043
044 public static final class Agenda {
045 public static final String ID = "id";
046 public static final String AGENDA_ID ="agendaId";
047 }
048
049 public static final class Context {
050 public static final String CONTEXT_ID ="contextId";
051 public static final String NAME = "name";
052 public static final String NAMESPACE = "namespace";
053 public static final String ATTRIBUTE_BOS = "attributeBos";
054 }
055
056 public static final class Rule {
057 public static final String RULE_ID ="ruleId";
058 }
059
060 public static final class KrmsAttributeDefinition {
061 public static final String NAME = "name";
062 public static final String NAMESPACE = "namespace";
063 }
064
065 public static final class BaseAttribute {
066 public static final String ATTRIBUTE_DEFINITION_ID = "attributeDefinitionId";
067 public static final String VALUE = "value";
068 public static final String ATTRIBUTE_DEFINITION = "attributeDefinition";
069 }
070
071 }
072
073 }