update ehcache to version 2.5.1

This commit is contained in:
Sebastian Sdorra
2012-02-01 15:44:29 +01:00
parent 0c38a6346a
commit 12fac88aaf
4 changed files with 15 additions and 3 deletions

View File

@@ -71,6 +71,17 @@ public class EhCacheManager implements CacheManager
new net.sf.ehcache.CacheManager(EhCacheManager.class.getResource(CONFIG));
}
/**
* This constructor is only for unit tests
*
*
* @param cacheManager
*/
public EhCacheManager(net.sf.ehcache.CacheManager cacheManager)
{
this.cacheManager = cacheManager;
}
//~--- methods --------------------------------------------------------------
/**