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.assertdevelopments.promise.poc.client.StreamRequestEntity.java

/**
 * @author Stefan Bangels
 * @since 2015-02-27
 */
final class StreamRequestEntity extends BasicHttpEntity {

From source file com.aliyun.oss.common.comm.RepeatableInputStreamEntity.java

public class RepeatableInputStreamEntity extends BasicHttpEntity {

    private boolean firstAttempt = true;

    private NoAutoClosedInputStreamEntity innerEntity;

From source file pydio.sdk.java.http.XMLDocEntity.java

/**
 * XML document Wrapper
 * @author pydio
 *
 */
public class XMLDocEntity extends BasicHttpEntity {

From source file com.amazonaws.http.RepeatableInputStreamRequestEntity.java

/**
 * Custom implementation of {@link RequestEntity} that delegates to an
 * {@link InputStreamRequestEntity}, with the one notable difference, that if
 * the underlying InputStream supports being reset, this RequestEntity will
 * report that it is repeatable and will reset the stream on all subsequent
 * attempts to write out the request.

From source file com.ksc.http.RepeatableInputStreamRequestEntity.java

/**
 * Custom implementation of {@link RequestEntity} that delegates to an
 * {@link RepeatableInputStreamRequestEntity}, with the one notable difference, that if
 * the underlying InputStream supports being reset, this RequestEntity will
 * report that it is repeatable and will reset the stream on all subsequent
 * attempts to write out the request.

From source file com.amazonaws.services.dynamodbv2.http.RepeatableInputStreamRequestEntity.java

/**
 * Custom implementation of {@link RequestEntity} that delegates to an
 * {@link InputStreamRequestEntity}, with the one notable difference, that if
 * the underlying InputStream supports being reset, this RequestEntity will
 * report that it is repeatable and will reset the stream on all subsequent
 * attempts to write out the request.

From source file info.ajaxplorer.client.http.XMLDocEntity.java

public class XMLDocEntity extends BasicHttpEntity {

    private Document doc;

    public XMLDocEntity(HttpEntity notConsumedEntity)
            throws ParserConfigurationException, IOException, SAXException {

From source file com.amazonaws.client.service.RepeatableInputStreamRequestEntity.java

/**
 * Custom implementation of {@link RequestEntity} that delegates to an
 * {@link InputStreamRequestEntity}, with the one notable difference, that if
 * the underlying InputStream supports being reset, this RequestEntity will
 * report that it is repeatable and will reset the stream on all subsequent
 * attempts to write out the request.

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

/**
 * Wraps an Abdera object for use with the Apache HTTP client.
 */
public class AbderaEntity extends BasicHttpEntity implements HttpEntity {

    private final Header ct;

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

public class ByteArrayOSRequestEntity extends BasicHttpEntity {

    private ByteArrayOutputStream os = null;

    /**
     * Constructor for ByteArrayOSRequestEntity.