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 diuf.unifr.ch.first.xwot.rxtx.notifications.JAXBEntity.java

/**
 * from http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/201205.mbox/%3C1336131004.13924.16.camel@ubuntu%3E
 * Not used
 * @author leo
 */
class JAXBEntity extends AbstractHttpEntity {

From source file neembuu.httpserver.VFileEntity.java

/**
 *
 * @author Shashank Tulsyan
 */
public class VFileEntity extends AbstractHttpEntity {
    private final AbstractFile af;

From source file com.ibm.og.client.CustomHttpEntity.java

/**
 * an http entity which derives its source inputstream
 * 
 * @since 1.0
 */
public class CustomHttpEntity extends AbstractHttpEntity {

From source file com.joyent.manta.http.entity.ExposedByteArrayEntity.java

/**
 * Provides a byte array backed entity like {@link org.apache.http.entity.ByteArrayEntity}
 * that provides a method to access the underlying byte array as a buffer.
 *
 * @author <a href="https://github.com/dekobon">Elijah Zupancic</a>
 * @since 3.0.0

From source file onl.area51.httpd.util.EmptyEntity.java

/**
 *
 * @author peter
 */
public class EmptyEntity extends AbstractHttpEntity {

From source file uk.co.unclealex.googleauth.ContentEntity.java

/**
 * @author Yaniv Inbar
 */
public final class ContentEntity extends AbstractHttpEntity {

    private final long contentLength;

From source file com.google.api.client.apache.ContentEntity.java

/**
 * @author Yaniv Inbar
 */
final class ContentEntity extends AbstractHttpEntity {

    private final long contentLength;

From source file rawsclient.ThrottledEntity.java

/**
 * A streamed, non-repeatable entity that obtains its content from 
 * an {@link InputStream}.
 * 
 * @since 4.0
 */

From source file com.strato.hidrive.api.utils.multipart.MultipartEntity.java

public class MultipartEntity extends AbstractHttpEntity implements Cloneable {

    /* package */ static final String CRLF = "\r\n";

    private List<Part> parts = new ArrayList<Part>();

From source file org.esigate.servlet.impl.HttpServletRequestEntity.java

public class HttpServletRequestEntity extends AbstractHttpEntity {
    private final HttpServletRequest request;
    private final long length;

    HttpServletRequestEntity(HttpServletRequest request) {
        this.request = request;