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  
28      /**
29       * MAINTAIN_KRMS_AGENDA
30       */
31      public static final String MAINTAIN_KRMS_AGENDA = "Maintain KRMS Agenda";
32  
33      /**
34       * SERVICE_PATH_SOAP
35       */
36      public final static String SERVICE_PATH_SOAP = "soap/" + Namespaces.MODULE_NAME + "/" + CoreConstants.Versions.VERSION_2_0;
37  
38      /**
39       * KRMS distributed cache bean id
40       */
41      public static final String KRMS_DISTRIBUTED_CACHE = "krmsDistributedCacheManager";
42  
43      /**
44       * Namespaces
45       */
46  	public final static class Namespaces {
47          /**
48           * Namespaces MODULE_NAME
49           */
50  		public static final String MODULE_NAME = "krms";
51  
52          /**
53           * Namespaces KRMS_NAMESPACE_PREFIX
54           */
55          public static final String KRMS_NAMESPACE_PREFIX = CoreConstants.Namespaces.ROOT_NAMESPACE_PREFIX + "/" + MODULE_NAME;
56  
57          /**
58           * Namespace for the kew module which is compatible with Kuali Rice 2.0.x.
59           */
60          public static final String KRMS_NAMESPACE_2_0 = KRMS_NAMESPACE_PREFIX + "/" + CoreConstants.Versions.VERSION_2_0;
61  	}
62  
63  }
64