Package net.sf.ehcache.extension
Class CacheExtensionFactory
- java.lang.Object
-
- net.sf.ehcache.extension.CacheExtensionFactory
-
public abstract class CacheExtensionFactory extends java.lang.ObjectAn abstract factory for creatingCacheExtensions. Implementers should provide their own concrete factory extending this factory. It can then be configured in ehcache.xml.- Version:
- $Id$
- Author:
- Greg Luck
-
-
Constructor Summary
Constructors Constructor Description CacheExtensionFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract CacheExtensioncreateCacheExtension(Ehcache cache, java.util.Properties properties)
-
-
-
Method Detail
-
createCacheExtension
public abstract CacheExtension createCacheExtension(Ehcache cache, java.util.Properties properties)
- Parameters:
cache- the cache this extension should hold a reference to, and to whose lifecycle it should be bound.properties- implementation specific properties configured as delimiter separated name value pairs in ehcache.xml
-
-