StoreCacheManagerImpl.java
Home
/
sm-core /
src /
main /
java /
com /
salesmanager /
core /
modules /
cms /
impl /
StoreCacheManagerImpl.java
package com.salesmanager.core.modules.cms.impl;
/**
* Used for managing images
* @author casams1
*
*/
public class StoreCacheManagerImpl extends CacheManagerImpl {
private static StoreCacheManagerImpl cacheManager = null;
private final static String NAMED_CACHE = "StoreRepository";
private StoreCacheManagerImpl() {
super.init(NAMED_CACHE);
}
public static StoreCacheManagerImpl getInstance() {
if(cacheManager==null) {
cacheManager = new StoreCacheManagerImpl();
}
return cacheManager;
}
}