CacheStore.java
450 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.granite.httpcache.api;
import com.adobe.granite.httpcache.api.CacheFile;
import com.adobe.granite.httpcache.api.Headers;
import java.io.IOException;
public interface CacheStore {
public CacheFile create(String var1, Headers var2) throws IOException;
public CacheFile lookup(String var1);
public boolean evict(String var1);
public void evictAll(String var1, String var2);
}