Uses of Interface
org.apache.http.HttpMessage
| Package | Description |
|---|---|
| org.apache.http |
The core interfaces and classes of the HTTP components.
|
| org.apache.http.client.methods |
Request implementations for the various HTTP methods like GET and POST.
|
| org.apache.http.entity |
Representations for HTTP message entities.
|
| org.apache.http.impl.client | |
| org.apache.http.impl.conn | |
| org.apache.http.impl.entity |
Default implementations for interfaces in
org.apache.http.entity. |
| org.apache.http.impl.io |
Default implementations for interfaces in
org.apache.http.io. |
| org.apache.http.io |
The transport layer abstraction of the HTTP components.
|
| org.apache.http.message |
A selection of HTTP
message
implementations. |
-
Uses of HttpMessage in org.apache.http
Subinterfaces of HttpMessage in org.apache.http Modifier and Type Interface Description interfaceHttpEntityEnclosingRequestA request with an entity.interfaceHttpRequestAn HTTP request.interfaceHttpResponseAn HTTP response. -
Uses of HttpMessage in org.apache.http.client.methods
Subinterfaces of HttpMessage in org.apache.http.client.methods Modifier and Type Interface Description interfaceHttpUriRequestExtended version of theHttpRequestinterface that provides convenience methods to access request properties such as request URI and method type.Classes in org.apache.http.client.methods that implement HttpMessage Modifier and Type Class Description classHttpDeleteHTTP DELETE methodclassHttpEntityEnclosingRequestBaseBasic implementation of an HTTP request that can be modified.classHttpGetHTTP GET method.classHttpHeadHTTP HEAD method.classHttpOptionsHTTP OPTIONS method.classHttpPostHTTP POST method.classHttpPutHTTP PUT method.classHttpRequestBaseBasic implementation of an HTTP request that can be modified.classHttpTraceHTTP TRACE method. -
Uses of HttpMessage in org.apache.http.entity
Methods in org.apache.http.entity with parameters of type HttpMessage Modifier and Type Method Description longContentLengthStrategy. determineLength(HttpMessage message) -
Uses of HttpMessage in org.apache.http.impl.client
Classes in org.apache.http.impl.client that implement HttpMessage Modifier and Type Class Description classEntityEnclosingRequestWrapperA wrapper class forHttpEntityEnclosingRequests that can be used to change properties of the current request without modifying the original object.classRequestWrapperA wrapper class forHttpRequests that can be used to change properties of the current request without modifying the original object. -
Uses of HttpMessage in org.apache.http.impl.conn
Methods in org.apache.http.impl.conn that return HttpMessage Modifier and Type Method Description protected HttpMessageDefaultResponseParser. parseHead(SessionInputBuffer sessionBuffer) -
Uses of HttpMessage in org.apache.http.impl.entity
Methods in org.apache.http.impl.entity with parameters of type HttpMessage Modifier and Type Method Description HttpEntityEntityDeserializer. deserialize(SessionInputBuffer inbuffer, HttpMessage message)longLaxContentLengthStrategy. determineLength(HttpMessage message)longStrictContentLengthStrategy. determineLength(HttpMessage message)protected BasicHttpEntityEntityDeserializer. doDeserialize(SessionInputBuffer inbuffer, HttpMessage message)protected OutputStreamEntitySerializer. doSerialize(SessionOutputBuffer outbuffer, HttpMessage message)voidEntitySerializer. serialize(SessionOutputBuffer outbuffer, HttpMessage message, HttpEntity entity) -
Uses of HttpMessage in org.apache.http.impl.io
Methods in org.apache.http.impl.io that return HttpMessage Modifier and Type Method Description HttpMessageAbstractMessageParser. parse()protected abstract HttpMessageAbstractMessageParser. parseHead(SessionInputBuffer sessionBuffer)protected HttpMessageHttpRequestParser. parseHead(SessionInputBuffer sessionBuffer)protected HttpMessageHttpResponseParser. parseHead(SessionInputBuffer sessionBuffer)Methods in org.apache.http.impl.io with parameters of type HttpMessage Modifier and Type Method Description voidAbstractMessageWriter. write(HttpMessage message)protected abstract voidAbstractMessageWriter. writeHeadLine(HttpMessage message)protected voidHttpRequestWriter. writeHeadLine(HttpMessage message)protected voidHttpResponseWriter. writeHeadLine(HttpMessage message) -
Uses of HttpMessage in org.apache.http.io
Methods in org.apache.http.io that return HttpMessage Modifier and Type Method Description HttpMessageHttpMessageParser. parse()Methods in org.apache.http.io with parameters of type HttpMessage Modifier and Type Method Description voidHttpMessageWriter. write(HttpMessage message) -
Uses of HttpMessage in org.apache.http.message
Classes in org.apache.http.message that implement HttpMessage Modifier and Type Class Description classAbstractHttpMessageBasic implementation of an HTTP message that can be modified.classBasicHttpEntityEnclosingRequestBasic implementation of a request with an entity that can be modified.classBasicHttpRequestBasic implementation of an HTTP request that can be modified.classBasicHttpResponseBasic implementation of an HTTP response that can be modified.