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