1 package org.apache.jcs.auxiliary.remote.behavior;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 /***
23 * This holds contants that are used by the remote cache.
24 *
25 */
26 public interface IRemoteCacheConstants
27 {
28
29 /*** Mapping to props file value */
30 public final static String REMOTE_CACHE_SERVICE_NAME = "remote.cache.service.name";
31
32 /*** Mapping to props file value */
33 public final static String REMOTE_CACHE_SERVICE_VAL = IRemoteCacheService.class.getName();
34
35 /*** Mapping to props file value */
36 public final static String TOMCAT_XML = "remote.tomcat.xml";
37
38 /*** Mapping to props file value */
39 public final static String TOMCAT_ON = "remote.tomcat.on";
40
41 /*** Mapping to props file value */
42 public final static String REMOTE_CACHE_SERVICE_PORT = "remote.cache.service.port";
43
44 /*** Mapping to props file value */
45 public final static String REMOTE_LOCAL_CLUSTER_CONSISTENCY = "remote.cluster.LocalClusterConsistency";
46
47 /*** Mapping to props file value */
48 public final static String REMOTE_ALLOW_CLUSTER_GET = "remote.cluster.AllowClusterGet";
49
50 }