View Javadoc
1   /**
2    * Copyright 2005-2015 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.krms.api;
17  
18  import org.kuali.rice.core.api.CoreConstants;
19  
20  /**
21   * KRMS Constants
22   * @author Kuali Rice Team (rice.collab@kuali.org)
23   */
24  public final class KrmsConstants {
25  
26      public static final String KRMS_NAMESPACE = "KR-RULE";
27      public static final String KRMS_DATA_SOURCE = "krmsDataSource";
28  
29      /**
30       * MAINTAIN_KRMS_AGENDA
31       */
32      public static final String MAINTAIN_KRMS_AGENDA = "Maintain KRMS Agenda";
33  
34      /**
35       * SERVICE_PATH_SOAP
36       */
37      public final static String SERVICE_PATH_SOAP = "soap/" + Namespaces.MODULE_NAME + "/" + CoreConstants.Versions.VERSION_2_0;
38  
39      /**
40       * KRMS distributed cache bean id
41       */
42      public static final String KRMS_DISTRIBUTED_CACHE = "krmsDistributedCacheManager";
43  
44      /**
45       * Namespaces
46       */
47  	public final static class Namespaces {
48          /**
49           * Namespaces MODULE_NAME
50           */
51  		public static final String MODULE_NAME = "krms";
52  
53          /**
54           * Namespaces KRMS_NAMESPACE_PREFIX
55           */
56          public static final String KRMS_NAMESPACE_PREFIX = CoreConstants.Namespaces.ROOT_NAMESPACE_PREFIX + "/" + MODULE_NAME;
57  
58          /**
59           * Namespace for the kew module which is compatible with Kuali Rice 2.0.x.
60           */
61          public static final String KRMS_NAMESPACE_2_0 = KRMS_NAMESPACE_PREFIX + "/" + CoreConstants.Versions.VERSION_2_0;
62  	}
63  
64  }
65