Example usage for org.apache.http.entity HttpEntityWrapper subclass-usage

List of usage examples for org.apache.http.entity HttpEntityWrapper subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.entity HttpEntityWrapper subclass-usage.

Usage

From source file com.smartman.redpaperhelper.xutils.http.client.entity.DecompressingEntity.java

/**
 * Common base class for decompressing {@link HttpEntity} implementations.
 *
 * @since 4.1
 */
abstract class DecompressingEntity extends HttpEntityWrapper implements UploadEntity {

From source file com.janoz.usenet.support.GzipDecompressingEntity.java

public class GzipDecompressingEntity extends HttpEntityWrapper {

    public GzipDecompressingEntity(final HttpEntity entity) {
        super(entity);
    }

From source file at.bitfire.davdroid.webdav.GzipDecompressingEntity.java

class GzipDecompressingEntity extends HttpEntityWrapper {
    public GzipDecompressingEntity(final HttpEntity entity) {
        super(entity);
    }

    @Override

From source file org.apache.droids.protocol.http.DroidHttpEntity.java

class DroidHttpEntity extends HttpEntityWrapper {
    private final byte[] buffer;

    public DroidHttpEntity(final HttpEntity entity, long maxlen) throws IOException {
        super(entity);
        if (!entity.isRepeatable() || entity.getContentLength() < 0) {

From source file net.yacy.cora.protocol.http.StrictSizeLimitEntityWrapper.java

/**
 * HTTP entity wrapper used to strictly limit the size of the response content
 * fetched from an http connection.
 *
 */
public class StrictSizeLimitEntityWrapper extends HttpEntityWrapper {

From source file org.apache.hadoop.gateway.dispatch.CappedBufferHttpEntity.java

@NotThreadSafe
public class CappedBufferHttpEntity extends HttpEntityWrapper {

    public static final int DEFAULT_BUFFER_SIZE = 4096;

    private int replayWriteIndex;

From source file org.apache.hadoop.gateway.dispatch.PartiallyRepeatableHttpEntity.java

@NotThreadSafe
public class PartiallyRepeatableHttpEntity extends HttpEntityWrapper {

    public static final int DEFAULT_BUFFER_SIZE = 4096;

    private int replayWriteIndex;

From source file net.yacy.cora.protocol.http.GzipCompressingEntity.java

public class GzipCompressingEntity extends HttpEntityWrapper {

    //   private static final int DEFAULT_BUFFER_SIZE = 1024; // this is also the maximum chunk size

    public GzipCompressingEntity(final HttpEntity entity) {
        super(entity);

From source file ProgressHttpEntityWrapper.java

/**
 * HttpEntityWrapper with a progress callback
 *
 * @see <a href="http://stackoverflow.com/a/7319110/268795">http://stackoverflow.com/a/7319110/268795</a>
 */

From source file z.hol.net.http.entity.compress.GzipDecompressingEntity.java

/**
 * Wrapping entity that decompresses {@link #getContent content}.
 *
 *
 * @since 4.0
 */