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

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

Introduction

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

Usage

From source file org.apache.abdera2.protocol.client.EntityProviderEntity.java

/**
 * Implementation of HttpEntity based on the EntityProvider interface
 */
public class EntityProviderEntity extends BasicHttpEntity implements HttpEntity {

    private final Abdera abdera;

From source file org.apache.abdera2.activities.client.ActivityEntity.java

public class ActivityEntity extends BasicHttpEntity implements HttpEntity {

    private final ASBase base;
    private final Header ct;
    private final long len;
    private byte[] buf = null;

From source file microsoft.exchange.webservices.data.ByteArrayOSRequestEntity.java

class ByteArrayOSRequestEntity extends BasicHttpEntity {

    private ByteArrayOutputStream os = null;

    /**
     * Constructor for ByteArrayOSRequestEntity.

From source file com.aliyun.oss.common.comm.io.ChunkedInputStreamEntity.java

/**
 * A repeatable HTTP entity that obtains its content from an non-auto-close 
 * {@link ReleasableInputStreamEntity} and sends its content using chunked encoding.
 */
public class ChunkedInputStreamEntity extends BasicHttpEntity {

From source file org.apache.abdera2.protocol.client.MultipartRelatedEntity.java

/**
 * Implementation of the HttpEntity class for use with Multipart Atom Posts.
 * The first part of the multipart related package is an Atom Entry document
 * whose content element specifies a src="cid:..." attribute referencing the
 * second part of the multipart package. This is used primarily as a means
 * of simplifying posts to Atompub Media Collections.

From source file org.apache.juneau.rest.client.RestRequestEntity.java

/**
 * HttpEntity for serializing POJOs as the body of HTTP requests.
 */
public final class RestRequestEntity extends BasicHttpEntity {
    final Object output;
    final Serializer serializer;