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

com.openhtmltopdf.extend.impl.FSNoOpCacheStore Maven / Gradle / Ivy

Go to download

Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.

There is a newer version: 1.0.10
Show newest version
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 loader) {
        return null;
    }

    @Override
    public FSCacheValue get(String key) {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy