01: package org.terracotta.modules.ehcache.commons_1_0;
02:
03: public interface IConstants {
04: static final String MEMORYSTORE_CLASS_NAME_DOTS = "net.sf.ehcache.store.MemoryStore";
05: static final String MEMORYSTORETC_CLASS_NAME_DOTS = "net.sf.ehcache.store.MemoryStoreTC";
06: static final String CACHE_MANAGER_CLASS_NAME_DOTS = "net.sf.ehcache.CacheManager";
07:
08: static final String CACHE_CLASS_NAME_DOTS = "net.sf.ehcache.Cache";
09: static final String CACHETC_CLASS_NAME_DOTS = "net.sf.ehcache.CacheTC";
10: static final String MEMORYSTOREEVICTIONPOLICY_CLASS_NAME_DOTS = "net.sf.ehcache.store.MemoryStoreEvictionPolicy";
11: static final String MEMORYSTOREEVICTIONPOLICYTC_CLASS_NAME_DOTS = "net.sf.ehcache.store.MemoryStoreEvictionPolicyTC";
12:
13: static final String COMMON_EHCACHE_BUNDLE_NAME = "org.terracotta.modules.clustered_ehcache_commons_1.0";
14: static final String EHCACHE_124_BUNDLE_NAME = "org.terracotta.modules.clustered_ehcache_1.2.4";
15: static final String EHCACHE_13_BUNDLE_NAME = "org.terracotta.modules.clustered_ehcache_1.3";
16: }
|