protected CacheManager() throws CacheException {
try{
logger = Logger.getLogger(CLASS_NAME);
factory = CacheAccessFactory.getInstance();
Cache cache = factory.getCache(false);
cache.open(null);
cacheIdManager = new CacheIdManagerImpl();
}
catch(CacheNotAvailableException e){
throw new CacheException(e);
}