From 417f3b92ba4549b2f22340e3107d869d2b9c5bb8 Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Tue, 21 Oct 2008 07:00:00 -0700 Subject: Initial Contribution --- src/org/apache/http/entity/package.html | 58 +++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/org/apache/http/entity/package.html (limited to 'src/org/apache/http/entity/package.html') diff --git a/src/org/apache/http/entity/package.html b/src/org/apache/http/entity/package.html new file mode 100644 index 0000000..11d491e --- /dev/null +++ b/src/org/apache/http/entity/package.html @@ -0,0 +1,58 @@ + + + + + +Representations for HTTP message entities. + +An {@link org.apache.http.HttpEntity entity} is the optional content of a +{@link org.apache.http.HttpMessage message}. +You'll find a basic selection of entity implementations here. +If you need to send an entity, you can provide it for example as a +{@link org.apache.http.entity.ByteArrayEntity byte array}, +{@link org.apache.http.entity.StringEntity string}, +{@link org.apache.http.entity.FileEntity file}, or through an arbitrary +{@link org.apache.http.entity.InputStreamEntity input stream}. +If you receive a message with an entity, you typically get that as a +{@link org.apache.http.entity.BasicHttpEntity basic} entity. +Entity implementations can be +{@link org.apache.http.entity.HttpEntityWrapper wrapped}, +for example to +{@link org.apache.http.entity.BufferedHttpEntity buffer} +the content in memory. + + + + + -- cgit v1.2.3