Example usage for org.apache.http.impl.client RequestWrapper removeHeaders

List of usage examples for org.apache.http.impl.client RequestWrapper removeHeaders

Introduction

In this page you can find the example usage for org.apache.http.impl.client RequestWrapper removeHeaders.

Prototype

public void removeHeaders(String str) 

Source Link

Usage

From source file:com.apigee.sdk.apm.http.impl.client.cache.ConditionalRequestBuilder.java

/**
 * Returns a request to unconditionally validate a cache entry with the
 * origin. In certain cases (due to multiple intervening caches) our cache
 * may actually receive a response to a normal conditional validation where
 * the Date header is actually older than that of our current cache entry.
 * In this case, the protocol recommendation is to retry the validation and
 * force syncup with the origin.// w  ww .ja v a  2 s . c om
 * 
 * @param request
 *            client request we are trying to satisfy
 * @param entry
 *            existing cache entry we are trying to validate
 * @return an unconditional validation request
 * @throws ProtocolException
 */
public HttpRequest buildUnconditionalRequest(HttpRequest request, HttpCacheEntry entry)
        throws ProtocolException {
    RequestWrapper wrapped = new RequestWrapper(request);
    wrapped.resetHeaders();
    wrapped.addHeader("Cache-Control", "no-cache");
    wrapped.addHeader("Pragma", "no-cache");
    wrapped.removeHeaders("If-Range");
    wrapped.removeHeaders("If-Match");
    wrapped.removeHeaders("If-None-Match");
    wrapped.removeHeaders("If-Unmodified-Since");
    wrapped.removeHeaders("If-Modified-Since");
    return wrapped;
}

From source file:org.apache.http.impl.client.cache.ConditionalRequestBuilder.java

/**
 * Returns a request to unconditionally validate a cache entry with
 * the origin. In certain cases (due to multiple intervening caches)
 * our cache may actually receive a response to a normal conditional
 * validation where the Date header is actually older than that of
 * our current cache entry. In this case, the protocol recommendation
 * is to retry the validation and force syncup with the origin.
 * @param request client request we are trying to satisfy
 * @param entry existing cache entry we are trying to validate
 * @return an unconditional validation request
 *///from  w  w w .j  av  a 2 s .c om
public HttpRequest buildUnconditionalRequest(HttpRequest request, HttpCacheEntry entry) {
    RequestWrapper wrapped;
    try {
        wrapped = new RequestWrapper(request);
    } catch (ProtocolException e) {
        log.warn("unable to build proper unconditional request", e);
        return request;
    }
    wrapped.resetHeaders();
    wrapped.addHeader("Cache-Control", "no-cache");
    wrapped.addHeader("Pragma", "no-cache");
    wrapped.removeHeaders("If-Range");
    wrapped.removeHeaders("If-Match");
    wrapped.removeHeaders("If-None-Match");
    wrapped.removeHeaders("If-Unmodified-Since");
    wrapped.removeHeaders("If-Modified-Since");
    return wrapped;
}