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.suning.mobile.ebuy.lottery.network.util.GzipDecompressingEntity.java

/**
 * 
 * @Title:gzip
 * @Description:
 * @Author:12072565 
 * @Since:2013-4-25

From source file org.mcxiaoke.commons.http.impl.DecompressingEntity.java

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

From source file com.heibuddy.xiaohuoban.http.support.DecompressingEntity.java

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

From source file com.fanfou.app.opensource.http.support.DecompressingEntity.java

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

From source file com.soundcloud.playerapi.DecompressingEntity.java

abstract class DecompressingEntity extends HttpEntityWrapper {
    /**
     * Default buffer size.
     */
    private static final int BUFFER_SIZE = 1024 * 2;

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

/**
 * Wrapping entity that compresses content when {@link #writeTo writing}.
 *
 *
 * @since 4.0
 */

From source file com.zotoh.maedr.device.apache.StreamingNHttpEntity.java

/**
 * @author kenl
 *
 */
public class StreamingNHttpEntity extends HttpEntityWrapper implements ConsumingNHttpEntity {

From source file com.dmsl.anyplace.utils.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 com.example.dailyphoto.oath.EasyHttpClient.java

@SuppressWarnings("deprecation")
class GzipEntityWrapper extends HttpEntityWrapper {
    public GzipEntityWrapper(HttpEntity wrapped) {
        super(wrapped);
    }

From source file com.deadpeace.potlatch.unsafe.EasyHttpClient.java

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

    @Override