|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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.impl.nio | |
org.apache.http.message | A selection of HTTP
message
implementations. |
org.apache.http.nio.entity | |
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.impl.nio |
---|
Methods in org.apache.http.impl.nio that return HttpEntity | |
---|---|
protected HttpEntity |
NHttpConnectionBase.prepareDecoder(HttpMessage message)
|
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.nio.entity |
---|
Subinterfaces of HttpEntity in org.apache.http.nio.entity | |
---|---|
interface |
ConsumingNHttpEntity
A non-blocking entity that allows content to be consumed from a decoder. |
interface |
HttpNIOEntity
Deprecated. |
interface |
ProducingNHttpEntity
An HttpEntity that writes content to a ContentEncoder . |
Classes in org.apache.http.nio.entity that implement HttpEntity | |
---|---|
class |
BufferingNHttpEntity
A ConsumingNHttpEntity that consumes content into a buffer. |
class |
ByteArrayNIOEntity
Deprecated. |
class |
ConsumingNHttpEntityTemplate
A ConsumingNHttpEntity that forwards available content to a
ContentListener . |
class |
ContentBufferEntity
|
class |
FileNIOEntity
Deprecated. |
class |
NByteArrayEntity
An entity whose content is retrieved from a byte array. |
class |
NFileEntity
An entity whose content is retrieved from from a file. |
class |
NHttpEntityWrapper
|
class |
NStringEntity
An entity whose content is retrieved from a string. |
class |
StringNIOEntity
Deprecated. |
Constructors in org.apache.http.nio.entity with parameters of type HttpEntity | |
---|---|
BufferingNHttpEntity(HttpEntity httpEntity,
ByteBufferAllocator allocator)
|
|
ConsumingNHttpEntityTemplate(HttpEntity httpEntity,
ContentListener contentListener)
|
|
ContentBufferEntity(HttpEntity entity,
ContentInputBuffer buffer)
|
|
NHttpEntityWrapper(HttpEntity httpEntity)
|
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)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |