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

org.nutz.web.cache.CacheManager Maven / Gradle / Ivy

package org.nutz.web.cache;

public interface CacheManager {

    public boolean isExpired(T entity);

    public T create(String key);

    public T get(String key);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy