Uses of Interface
org.apache.http.HttpEntity

Packages that use HttpEntity
org.apache.http The core interfaces and classes of the HTTP components. 
org.apache.http.entity Representations for HTTP message entities. 
org.apache.http.impl.entity Default implementations for interfaces in org.apache.http.entity
org.apache.http.message A selection of HTTP message implementations. 
org.apache.http.util Mostly utility classes with static helper methods for various purposes. 
 

Uses of HttpEntity in org.apache.http
 

Methods in org.apache.http that return HttpEntity
 HttpEntity HttpEntityEnclosingRequest.getEntity()
           
 HttpEntity HttpResponse.getEntity()
          Obtains the message entity of this response, if any.
 

Methods in org.apache.http with parameters of type HttpEntity
 void HttpEntityEnclosingRequest.setEntity(HttpEntity entity)
          Hands the entity to the request.
 void HttpResponse.setEntity(HttpEntity entity)
          Associates a response entity with this response.
 

Uses of HttpEntity in org.apache.http.entity
 

Classes in org.apache.http.entity that implement HttpEntity
 class AbstractHttpEntity
          Abstract base class for entities.
 class BasicHttpEntity
          A generic streamed entity being received on a connection.
 class BufferedHttpEntity
          A wrapping entity that buffers it content if necessary.
 class ByteArrayEntity
          A self-contained entity obtaining content from a byte array.
 class EntityTemplate
          Entity that delegates the process of content generation to an abstract content producer.
 class FileEntity
          A self-contained entity obtaining content from a file.
 class HttpEntityWrapper
          Base class for wrapping entities.
 class InputStreamEntity
          A streamed entity obtaining content from an InputStream.
 class StringEntity
          A self-contained entity obtaining content from a string.
 

Fields in org.apache.http.entity declared as HttpEntity
protected  HttpEntity HttpEntityWrapper.wrappedEntity
          The wrapped entity.
 

Constructors in org.apache.http.entity with parameters of type HttpEntity
BufferedHttpEntity(HttpEntity entity)
           
HttpEntityWrapper(HttpEntity wrapped)
          Creates a new entity wrapper.
 

Uses of HttpEntity in org.apache.http.impl.entity
 

Methods in org.apache.http.impl.entity that return HttpEntity
 HttpEntity EntityDeserializer.deserialize(HttpDataReceiver datareceiver, HttpMessage message)
           
 

Methods in org.apache.http.impl.entity with parameters of type HttpEntity
 void EntitySerializer.serialize(HttpDataTransmitter datatransmitter, HttpMessage message, HttpEntity entity)
           
 

Uses of HttpEntity in org.apache.http.message
 

Methods in org.apache.http.message that return HttpEntity
 HttpEntity BasicHttpResponse.getEntity()
           
 HttpEntity BasicHttpEntityEnclosingRequest.getEntity()
           
 

Methods in org.apache.http.message with parameters of type HttpEntity
 void BasicHttpResponse.setEntity(HttpEntity entity)
           
 void BasicHttpEntityEnclosingRequest.setEntity(HttpEntity entity)
           
 

Uses of HttpEntity in org.apache.http.util
 

Methods in org.apache.http.util with parameters of type HttpEntity
static byte[] EntityUtils.toByteArray(HttpEntity entity)
           
static java.lang.String EntityUtils.getContentCharSet(HttpEntity entity)
           
static java.lang.String EntityUtils.toString(HttpEntity entity, java.lang.String defaultCharset)
           
static java.lang.String EntityUtils.toString(HttpEntity entity)
           
 



Copyright © 2005-2007 Apache Software Foundation. All Rights Reserved.