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

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

Introduction

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

Usage

From source file com.creditease.utilframe.http.client.entity.InputStreamUploadEntity.java

/**
 * Created with IntelliJ IDEA.
 * User: wyouflf
 * Date: 13-6-28
 * Time: ?12:14
 */

From source file com.drive.student.xutils.http.client.entity.InputStreamUploadEntity.java

/**
 * Created with IntelliJ IDEA.
 * User: wyouflf
 * Date: 13-6-28
 * Time: ?12:14
 */

From source file com.third.lidroid.xutils.http.client.entity.InputStreamUploadEntity.java

/**
 * Created with IntelliJ IDEA.
 * User: wyouflf
 * Date: 13-6-28
 * Time: ?12:14
 */

From source file lucee.commons.net.http.httpclient.entity.ResourceHttpEntity.java

/**
 * A RequestEntity that represents a Resource.
 */
public class ResourceHttpEntity extends AbstractHttpEntity implements Entity4 {

    final Resource res;

From source file com.nesscomputing.httpclient.factory.httpclient4.BetterStringEntity.java

/**
 * A self contained, repeatable entity that obtains its content from
 * a {@link String}.
 */
public class BetterStringEntity extends AbstractHttpEntity implements Cloneable {
    protected final byte[] content;

From source file com.youzu.android.framework.http.client.entity.InputStreamUploadEntity.java

/**
 * Created with IntelliJ IDEA.
 * User: wyouflf
 * Date: 13-6-28
 * Time: ?12:14
 */

From source file org.dasein.cloud.util.requester.entities.DaseinEntity.java

/**
* @author Vlad Munthiu
*/
public abstract class DaseinEntity<T> extends AbstractHttpEntity implements Cloneable {
    protected final byte[] content;
    protected final int length;

From source file net.bitquill.ocr.weocr.WeOCRFormEntity.java

/**
 * Simple implementation of form/multipart entity with hard-coded fields, 
 * to avoid including mime4j and httpmime (~400K in two JARs).
 * 
 * @author spapadim
 */

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

public abstract class DelayedHttpEntity extends AbstractHttpEntity {
    private static final Logger log = Logger.getLogger(DelayedHttpEntity.class);

    private final CountDownLatch entry;
    private final CountDownLatch exit = new CountDownLatch(1);

From source file com.adis.tools.http.client.entity.BodyParamsEntity.java

/**
 * Author: wyouflf
 * Date: 13-7-26
 * Time: ?4:21
 */
public class BodyParamsEntity extends AbstractHttpEntity implements Cloneable {