Home | History | Annotate | Download | only in entity

Lines Matching defs:HTTP

2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/entity/UrlEncodedFormEntity.java $
15 * http://www.apache.org/licenses/LICENSE-2.0
27 * <http://www.apache.org/>.
31 package org.apache.http.client.entity;
35 import org.apache.http.NameValuePair;
36 import org.apache.http.client.utils.URLEncodedUtils;
37 import org.apache.http.entity.StringEntity;
38 import org.apache.http.protocol.HTTP;
42 * This is typically useful while sending an HTTP POST request.
64 * of parameters with the default encoding of {@link HTTP#DEFAULT_CONTENT_CHARSET}
71 super(URLEncodedUtils.format(parameters, HTTP.DEFAULT_CONTENT_CHARSET),
72 HTTP.DEFAULT_CONTENT_CHARSET);