return (Map) this.caches.get(cacheName);
}
try {
log.debug(cacheName + LOG_MESSAGE_NOT_FOUND_IN_CACHE);
final CacheConfiguration config = (CacheConfiguration)CacheManager.getConfiguration().get(cacheName);
final Map map = new WhirlyCacheMap(this.cacheManager.getCache(cacheName), config);
this.caches.put(cacheName, map);
return map;
} catch (CacheException ce) {
log.error(ce, ce);