StoreCacheManagerImpl.java

43 lines | 598 B Blame History Raw Download
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;
		
		
	}



}