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.youzu.android.framework.http.client.entity.BodyParamsEntity.java

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

From source file org.dasein.cloud.utils.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 com.subgraph.vega.internal.http.requests.RepeatableStreamingEntity.java

/**
 * An entity wrapper which converts a non-repeatable streaming entity
 * into a repeatable entity by storing the data as it streams in from
 * a connection (or other streaming source).  When all streaming data has
 * been received, the entity behaves like a ByteArrayEntity. 
 */

From source file marytts.server.http.TestProducingNHttpEntity.java

/**
 * @author marc
 *
 */
public class TestProducingNHttpEntity extends AbstractHttpEntity implements ProducingNHttpEntity {

From source file org.robam.xutils.http.client.entity.BodyParamsEntity.java

public class BodyParamsEntity extends AbstractHttpEntity implements Cloneable {

    protected byte[] content;

    private boolean dirty = true;

From source file com.dongfang.net.http.client.entity.BodyParamsEntity.java

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

    protected byte[] content;

From source file com.android.idtt.http.client.entity.BodyParamsEntity.java

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

From source file cn.isif.util_plus.http.client.entity.BodyParamsEntity.java

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

From source file com.moxm.frameworks.http.client.entity.BodyParamsEntity.java

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

From source file com.hp.mercury.ci.jenkins.plugins.oo.http.JaxbEntity.java

public class JaxbEntity extends AbstractHttpEntity {

    private Object jaxbObject;

    public JaxbEntity(Object obj) {
        this.jaxbObject = obj;