Example usage for org.apache.http.client.cache HttpCacheStorage interface-usage

List of usage examples for org.apache.http.client.cache HttpCacheStorage interface-usage

Introduction

In this page you can find the example usage for org.apache.http.client.cache HttpCacheStorage interface-usage.

Usage

From source file org.esigate.cache.CacheStorage.java

public abstract class CacheStorage implements HttpCacheStorage {
    private static final Logger LOG = LoggerFactory.getLogger(CacheStorage.class);

    public abstract void init(Properties properties);

    private HttpCacheStorage impl;

From source file com.machinepublishers.jbrowserdriver.HttpCacheNoOp.java

class HttpCacheNoOp implements HttpCacheStorage {

    HttpCacheNoOp() {
    }

    /**

From source file org.eclipse.thym.core.internal.util.BundleHttpCacheStorage.java

/**
 * A cache storage whose back-end is on OSGi bundles data file area.
 * 
 * @author Gorkem Ercan
 *
 */

From source file org.jboss.tools.aerogear.hybrid.core.internal.util.BundleHttpCacheStorage.java

/**
 * A cache storage whose back-end is on OSGi bundles data file area.
 * 
 * @author Gorkem Ercan
 *
 */

From source file com.machinepublishers.jbrowserdriver.HttpCache.java

class HttpCache implements HttpCacheStorage {
    private final File cacheDir;

    HttpCache(File cacheDir) {
        this.cacheDir = cacheDir;
    }

From source file gr.wavesoft.webng.io.cache.DiskCacheStorage.java

/**
 *
 * @author icharala
 */
public class DiskCacheStorage implements HttpCacheStorage {

From source file org.apache.http.impl.client.cache.memcached.MemcachedHttpCacheStorage.java

/**
 * <p>This class is a storage backend that uses an external <i>memcached</i>
 * for storing cached origin responses. This storage option provides a
 * couple of interesting advantages over the default in-memory storage
 * backend:
 * <ol>

From source file it.tidalwave.bluemarine2.downloader.impl.SimpleHttpCacheStorage.java

/***********************************************************************************************************************
 *
 * @author  Fabrizio Giudici
 * @version $Id$
 *
 **********************************************************************************************************************/