001 /** 002 * Copyright 2005-2013 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 * 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 static final String STUDENT_LOOKUP_VIEW = "StudentLookupView"; 027 public static final String STUDENT_INQUIRY_VIEW = "StudentInquiryView"; 028 029 public final static class WebPaths { 030 public static final String AGENDA_INQUIRY_PATH = "krmsAgendaInquiry"; 031 public static final String AGENDA_EDITOR_PATH = "krmsAgendaEditor"; 032 public static final String AGENDA_STUDENT_INQUIRY_PATH = "krmsAgendaStudentInquiry"; 033 public static final String AGENDA_STUDENT_EDITOR_PATH = "krmsAgendaStudentEditor"; 034 public static final String PROPOSITION_PATH = "krmsProposition"; 035 } 036 037 /** 038 * This class contains constants associated with the KRMS Repository 039 * 040 * @author Kuali Rice Team (rice.collab@kuali.org) 041 * 042 */ 043 public static final class PropertyNames { 044 045 public static final class Action { 046 public static final String ACTION_ID ="actionId"; 047 } 048 049 public static final class Agenda { 050 public static final String ID = "id"; 051 public static final String AGENDA_ID ="agendaId"; 052 } 053 054 public static final class Context { 055 public static final String CONTEXT_ID ="contextId"; 056 public static final String NAME = "name"; 057 public static final String NAMESPACE = "namespace"; 058 public static final String ATTRIBUTE_BOS = "attributeBos"; 059 } 060 061 public static final class NaturalLanguageTemplate { 062 public static final String NATURAL_LANGUAGE_TEMPLATE_ID ="naturalLanguageTemplateId"; 063 } 064 065 public static final class NaturalLanguageUsage { 066 public static final String NATURAL_LANGUAGE_USAGE_ID ="naturalLanguageUsageId"; 067 } 068 069 public static final class ReferenceObjectBinding { 070 public static final String REFERENCE_OBJECT_BINDING_ID ="referenceObjectBindingId"; 071 } 072 073 public static final class Rule { 074 public static final String RULE_ID ="ruleId"; 075 } 076 077 public static final class KrmsAttributeDefinition { 078 public static final String NAME = "name"; 079 public static final String NAMESPACE = "namespace"; 080 } 081 082 public static final class BaseAttribute { 083 public static final String ATTRIBUTE_DEFINITION_ID = "attributeDefinitionId"; 084 public static final String VALUE = "value"; 085 public static final String ATTRIBUTE_DEFINITION = "attributeDefinition"; 086 } 087 088 } 089 090 }