com.clickntap.tool.cache.Cache 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;
import java.io.Serializable;
public interface Cache {
public Serializable get(Serializable key) throws Exception;
public Serializable put(Serializable key, Serializable value) throws Exception;
public void remove(Serializable key) throws Exception;
public void removeAll() throws Exception;
public boolean contains(Serializable key) throws Exception;
}