// this.cacheAdmin = ServletCacheAdministrator.getInstance(
// servletContext, cacheProperties);
try {
CacheManager cacheManager = CacheManager.getInstance();
Map<String, String> env = new ServletContextInitMap(servletContext);
CacheFactory cacheFactory = cacheManager.getCacheFactory(env);
this.cache = cacheFactory.createCache(env, this, this);
} catch (CacheException e) {
throw new FacesException(e.getMessage(), e);
}
}
// Create Resource-specific Faces Lifecycle instance.