com.openhtmltopdf.extend.impl.FSNoOpCacheStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openhtmltopdf-core Show documentation
Show all versions of openhtmltopdf-core Show documentation
Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.
package com.openhtmltopdf.extend.impl;
import java.util.concurrent.Callable;
import com.openhtmltopdf.extend.FSCacheEx;
import com.openhtmltopdf.extend.FSCacheValue;
public class FSNoOpCacheStore implements FSCacheEx {
public final static FSNoOpCacheStore INSTANCE = new FSNoOpCacheStore();
@Override
public void put(String key, FSCacheValue value) {
}
@Override
public FSCacheValue get(String key, Callable extends FSCacheValue> loader) {
return null;
}
@Override
public FSCacheValue get(String key) {
return null;
}
}