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.vk.sdk.api.httpClient.VKMultipartEntity.java

/**
 * Class used for build upload multipart data for VK servers
 */
public class VKMultipartEntity extends AbstractHttpEntity {

    private static final String VK_BOUNDARY = "Boundary(======VK_SDK_%d======)";

From source file com.vk.sdkweb.api.httpClient.VKMultipartEntity.java

/**
 * Class used for build upload multipart data for VK servers
 */
public class VKMultipartEntity extends AbstractHttpEntity {

    private static final String VK_BOUNDARY = "Boundary(======VK_SDK_%d======)";

From source file com.apigee.sdk.apm.http.impl.client.cache.CombinedEntity.java

@NotThreadSafe
class CombinedEntity extends AbstractHttpEntity {

    private final Resource resource;
    private final InputStream combinedStream;

From source file org.fao.geonet.utils.nio.PathHttpEntity.java

/**
 * A self contained, repeatable entity that obtains its content from a file.
 *
 * @since 4.0
 */
@NotThreadSafe

From source file org.apache.hadoop.gateway.dispatch.InputStreamEntity.java

/**
 * A streamed, non-repeatable entity that obtains its content froman {@link InputStream}.
 * Copied from HttpClient source in order to increase buffer size.
 */
@NotThreadSafe
public class InputStreamEntity extends AbstractHttpEntity {

From source file com.hoccer.http.MultipartHttpEntity.java

public class MultipartHttpEntity extends AbstractHttpEntity {

    public static final String BORDER = "ycKtoN8VURwvDC4sUzYC9Mo7l0IVUyDDVf";

    private byte[] mPreample = null;
    private final byte[] mEnd = ("\r\n--" + BORDER + "--\r\n").getBytes();

From source file com.axibase.tsd.client.PlainSender.java

/**
 * @author Nikolay Malevanny.
 */
class PlainSender extends AbstractHttpEntity implements Runnable {
    private static final Logger log = LoggerFactory.getLogger(PlainSender.class);
    private static final String PING_COMMAND = "ping\n";

From source file pl.allegro.tech.hermes.consumers.consumer.sender.http.ByteBufferEntity.java

/**
 * An entity that delivers the contents of a {@link ByteBuffer}.
 */
@NotThreadSafe
public class ByteBufferEntity extends AbstractHttpEntity implements Cloneable {

From source file com.android.http.multipart.MultipartEntity.java

/**
 * Implements a request entity suitable for an HTTP multipart POST method.
 * <p>
 * The HTTP multipart POST method is defined in section 3.3 of
 * <a href="http://www.ietf.org/rfc/rfc1867.txt">RFC1867</a>:
 * <blockquote>

From source file com.android.internalcopy.http.multipart.MultipartEntity.java

/**
 * Implements a request entity suitable for an HTTP multipart POST method.
 * <p>
 * The HTTP multipart POST method is defined in section 3.3 of
 * <a href="http://www.ietf.org/rfc/rfc1867.txt">RFC1867</a>:
 * <blockquote>