public Cache getCache(String pool) {
net.sf.ehcache.Cache cache = null;
try {
cache = doGetCache(pool.toUpperCase());
} catch (Exception e) {
throw new CacheUnreachableException("Can't create Ehcache Instance");
}
Ehcache ehcache = new Ehcache();
ehcache.setCache(cache);
return ehcache;
}