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.hisrv.lib.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> The
 * media-type multipart/form-data follows the rules of all multipart MIME data

From source file org.apache.commons.httpclient.methods.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 local.apache.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.chanapps.four.multipartmime.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.nhn.android.me2day.sample.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 org.eclipse.jgit.transport.http.apache.TemporaryBufferEntity.java

/**
 * A {@link HttpEntity} which takes it's content from a {@link TemporaryBuffer}
 *
 * @since 3.3
 */
public class TemporaryBufferEntity extends AbstractHttpEntity implements AutoCloseable {

From source file com.android.internal.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.ekuater.labelchat.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.bluevia.android.commons.connector.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.jobs.lib_v1.net.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> The media-type multipart/form-data follows the rules of all multipart MIME data streams as outlined in RFC 1521. The multipart/form-data contains a series of parts.
 * Each part is expected to contain a content-disposition header where the value is "form-data" and a name attribute specifies the field name within the form, e.g., 'content-disposition: form-data; name="xxxxx"', where xxxxx is the field name corresponding to that field. Field names originally in
 * non-ASCII character sets may be encoded using the method outlined in RFC 1522. </blockquote>