All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jpattern.gwt.client.cache.ACacheService Maven / Gradle / Ivy

package com.jpattern.gwt.client.cache;

import java.util.List;

import com.jpattern.gwt.client.AService;
import com.jpattern.gwt.client.session.ISessionObserver;

/**
 * 
 * @author Francesco Cina
 *
 * 26/lug/2011
 */
public abstract class ACacheService extends AService implements ISessionObserver {

	public abstract List getCacheNames();
	
	public abstract ICache getCache(String cacheName);
	
	public abstract void registerCache(String cacheName, ICache cache);
	
	@Override
	public void onSessionClean() {
		for (String cacheName : getCacheNames()) {
			getCache(cacheName).clear();
		}		
	}

	@Override
	public void onAttributeAdded(String key) {
	}

	@Override
	public void onAttributeRemoved(String key) {
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy