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.alibaba.akita.io.GzipDecompressingEntity.java

/**
 *  
 * @author zhe.yangz 2012-2-14 ?07:16:12
 */
class GzipDecompressingEntity extends HttpEntityWrapper {

From source file de.undercouch.gradle.tasks.download.internal.CustomContentEncodingEntity.java

/**
 * Wraps around {@link HttpEntity} and replaces its content type
 * @author Michel Kraemer
 */
public class CustomContentEncodingEntity extends HttpEntityWrapper {
    private final Header contentEncoding;

From source file org.callimachusproject.client.HttpUriEntity.java

public class HttpUriEntity extends HttpEntityWrapper {
    private final String systemId;

    public HttpUriEntity(String systemId, HttpEntity wrapped) {
        super(wrapped);
        this.systemId = systemId;

From source file org.akita.io.GzipDecompressingEntity.java

/**
 *  
 * @author zhe.yangz 2012-2-14 ?07:16:12
 */
class GzipDecompressingEntity extends HttpEntityWrapper {

From source file me.xiaopan.android.gohttp.httpclient.InflatingEntity.java

public class InflatingEntity extends HttpEntityWrapper {
    public InflatingEntity(HttpEntity wrapped) {
        super(wrapped);
    }

    @Override

From source file com.micro.http.MicroGzipDecompressingEntity.java

/**
 * 
 * @ClassName: MicroGzipDecompressingEntity
 * @Description: ??Http
 * @AuthorChengel_HaltuD
 * @Date2015-5-30 ?2:51:03

From source file com.vmware.photon.controller.model.adapters.vsphere.ovf.CountingEntityWrapper.java

/**
 * An entity the remembers how many bytes it writes. It advances
 * a LeaseProgressUpdater.
 */
public class CountingEntityWrapper extends HttpEntityWrapper {
    private final LeaseProgressUpdater updater;

From source file ch.cyberduck.core.http.GzipDecompressingEntity.java

public final class GzipDecompressingEntity extends HttpEntityWrapper {

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

From source file org.brutusin.rpc.client.http.ProgressHttpEntityWrapper.java

/**
 * Copied from https://github.com/x2on/gradle-hockeyapp-plugin/blob/master/src/main/groovy/de/felixschulze/gradle/util/ProgressHttpEntityWrapper.groovy
 * @author Ignacio del Valle Alles idelvall@brutusin.org
 */
public class ProgressHttpEntityWrapper extends HttpEntityWrapper {

From source file com.example.base.http.DecompressingEntity.java

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