Uses of Interface
org.apache.http.HttpEntity
| Package | Description |
|---|---|
| org.apache.http |
The core interfaces and classes of the HTTP components.
|
| org.apache.http.client.entity | |
| org.apache.http.client.methods |
Request implementations for the various HTTP methods like GET and POST.
|
| org.apache.http.client.utils |
Helpers and utility classes for HttpClient.
|
| org.apache.http.conn |
The client-side connection management and handling API
at the heart of what is referred to as HttpConn.
|
| org.apache.http.entity |
Representations for HTTP message entities.
|
| org.apache.http.impl.client | |
| 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 Modifier and Type Method Description HttpEntityHttpEntityEnclosingRequest. getEntity()HttpEntityHttpResponse. getEntity()Obtains the message entity of this response, if any.Methods in org.apache.http with parameters of type HttpEntity Modifier and Type Method Description voidHttpEntityEnclosingRequest. setEntity(HttpEntity entity)Hands the entity to the request.voidHttpResponse. setEntity(HttpEntity entity)Associates a response entity with this response. -
Uses of HttpEntity in org.apache.http.client.entity
Classes in org.apache.http.client.entity that implement HttpEntity Modifier and Type Class Description classUrlEncodedFormEntityAn entity composed of a list of url-encoded pairs. -
Uses of HttpEntity in org.apache.http.client.methods
Methods in org.apache.http.client.methods that return HttpEntity Modifier and Type Method Description HttpEntityHttpEntityEnclosingRequestBase. getEntity()Methods in org.apache.http.client.methods with parameters of type HttpEntity Modifier and Type Method Description voidHttpEntityEnclosingRequestBase. setEntity(HttpEntity entity) -
Uses of HttpEntity in org.apache.http.client.utils
Methods in org.apache.http.client.utils with parameters of type HttpEntity Modifier and Type Method Description static booleanURLEncodedUtils. isEncoded(HttpEntity entity)Returns true if the entity's Content-Type header isapplication/x-www-form-urlencoded.static List<NameValuePair>URLEncodedUtils. parse(HttpEntity entity)Returns a list ofNameValuePairsas parsed from anHttpEntity. -
Uses of HttpEntity in org.apache.http.conn
Classes in org.apache.http.conn that implement HttpEntity Modifier and Type Class Description classBasicManagedEntityAn entity that releases aconnection.Constructors in org.apache.http.conn with parameters of type HttpEntity Constructor Description BasicManagedEntity(HttpEntity entity, ManagedClientConnection conn, boolean reuse)Creates a new managed entity that can release a connection. -
Uses of HttpEntity in org.apache.http.entity
Classes in org.apache.http.entity that implement HttpEntity Modifier and Type Class Description classAbstractHttpEntityAbstract base class for entities.classBasicHttpEntityA generic streamed entity being received on a connection.classBufferedHttpEntityA wrapping entity that buffers it content if necessary.classByteArrayEntityAn entity whose content is retrieved from a byte array.classEntityTemplateEntity that delegates the process of content generation to an abstract content producer.classFileEntityAn entity whose content is retrieved from a file.classHttpEntityWrapperBase class for wrapping entities.classInputStreamEntityA streamed entity obtaining content from anInputStream.classSerializableEntityclassStringEntityAn entity whose content is retrieved from a string.Fields in org.apache.http.entity declared as HttpEntity Modifier and Type Field Description protected HttpEntityHttpEntityWrapper. wrappedEntityThe wrapped entity.Constructors in org.apache.http.entity with parameters of type HttpEntity Constructor Description BufferedHttpEntity(HttpEntity entity)HttpEntityWrapper(HttpEntity wrapped)Creates a new entity wrapper. -
Uses of HttpEntity in org.apache.http.impl.client
Methods in org.apache.http.impl.client that return HttpEntity Modifier and Type Method Description HttpEntityEntityEnclosingRequestWrapper. getEntity()Methods in org.apache.http.impl.client with parameters of type HttpEntity Modifier and Type Method Description voidEntityEnclosingRequestWrapper. setEntity(HttpEntity entity) -
Uses of HttpEntity in org.apache.http.impl.entity
Methods in org.apache.http.impl.entity that return HttpEntity Modifier and Type Method Description HttpEntityEntityDeserializer. deserialize(SessionInputBuffer inbuffer, HttpMessage message)Methods in org.apache.http.impl.entity with parameters of type HttpEntity Modifier and Type Method Description voidEntitySerializer. serialize(SessionOutputBuffer outbuffer, HttpMessage message, HttpEntity entity) -
Uses of HttpEntity in org.apache.http.message
Methods in org.apache.http.message that return HttpEntity Modifier and Type Method Description HttpEntityBasicHttpEntityEnclosingRequest. getEntity()HttpEntityBasicHttpResponse. getEntity()Methods in org.apache.http.message with parameters of type HttpEntity Modifier and Type Method Description voidBasicHttpEntityEnclosingRequest. setEntity(HttpEntity entity)voidBasicHttpResponse. setEntity(HttpEntity entity) -
Uses of HttpEntity in org.apache.http.util
Methods in org.apache.http.util with parameters of type HttpEntity Modifier and Type Method Description static StringEntityUtils. getContentCharSet(HttpEntity entity)static byte[]EntityUtils. toByteArray(HttpEntity entity)static StringEntityUtils. toString(HttpEntity entity)static StringEntityUtils. toString(HttpEntity entity, String defaultCharset)