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 HttpResponse.getEntity()
          Obtains the message entity of this response, if any.
 HttpEntity HttpEntityEnclosingRequest.getEntity()
           
 

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

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
          An entity whose content is retrieved from a byte array.
 class EntityTemplate
          Entity that delegates the process of content generation to an abstract content producer.
 class FileEntity
          An entity whose content is retrieved from a file.
 class HttpEntityWrapper
          Base class for wrapping entities.
 class InputStreamEntity
          A streamed entity obtaining content from an InputStream.
 class SerializableEntity
           
 class StringEntity
          An entity whose content is retrieved 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(SessionInputBuffer inbuffer, HttpMessage message)
           
 

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

Uses of HttpEntity in org.apache.http.message
 

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

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

Uses of HttpEntity in org.apache.http.util
 

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



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