Home | History | Annotate | Download | only in multipart

Lines Matching refs:multipart

2  * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//httpclient/src/java/org/apache/commons/httpclient/methods/multipart/MultipartRequestEntity.java,v 1.1 2004/10/06 03:39:59 mbecke Exp $
31 package com.android.internal.http.multipart;
50 * Implements a request entity suitable for an HTTP multipart POST method.
52 * The HTTP multipart POST method is defined in section 3.3 of
55 * The media-type multipart/form-data follows the rules of all multipart
56 * MIME data streams as outlined in RFC 1521. The multipart/form-data contains
67 * multipart posts. Example usage:</p>
88 /** The Content-Type for multipart/form-data. */
89 private static final String MULTIPART_FORM_CONTENT_TYPE = "multipart/form-data";
92 * Sets the value to use as the multipart boundary.
97 public static final String MULTIPART_BOUNDARY = "http.method.multipart.boundary";
100 * The pool of ASCII chars to be used for generating a multipart boundary.
106 * Generates a random multipart boundary string.
127 * Creates a new multipart entity containing the given parts.