com.clickntap.tool.cache.CacheManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Stripecube Show documentation
Show all versions of Stripecube Show documentation
Stripecube is an open source Java framework for Web Applications
package com.clickntap.tool.cache;
public interface CacheManager {
public Cache getCache(String cacheName) throws Exception;
public boolean containsCache(String cacheName);
public void reset();
}