Uses of Interface
org.apache.http.HttpMessage
-
Packages that use HttpMessage Package Description org.apache.http Core HTTP component APIs and primitives.org.apache.http.entity Core HTTP entity implementations.org.apache.http.impl Default implementations of HTTP connections for synchronous, blocking communication.org.apache.http.impl.entity Default implementations of entity content strategies.org.apache.http.impl.io Default implementations of message parses and writers for synchronous, blocking communication.org.apache.http.io HTTP message parser and writer APIs for synchronous, blocking communication.org.apache.http.message Core HTTP message components, message element parser and writer APIs and their default 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.interfaceHttpRequestA request message from a client to a server includes, within the first line of that message, the method to be applied to the resource, the identifier of the resource, and the protocol version in use.interfaceHttpResponseAfter receiving and interpreting a request message, a server responds with an HTTP response message. -
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)Returns length of the given message in bytes. -
Uses of HttpMessage in org.apache.http.impl
Methods in org.apache.http.impl with parameters of type HttpMessage Modifier and Type Method Description protected HttpEntityBHttpConnectionBase. prepareInput(HttpMessage message)protected java.io.OutputStreamBHttpConnectionBase. prepareOutput(HttpMessage message) -
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)Deprecated.Creates anHttpEntitybased on properties of the given message.longDisallowIdentityContentLengthStrategy. determineLength(HttpMessage message)longLaxContentLengthStrategy. determineLength(HttpMessage message)longStrictContentLengthStrategy. determineLength(HttpMessage message)protected BasicHttpEntityEntityDeserializer. doDeserialize(SessionInputBuffer inBuffer, HttpMessage message)Deprecated.Creates aBasicHttpEntitybased on properties of the given message.protected java.io.OutputStreamEntitySerializer. doSerialize(SessionOutputBuffer outbuffer, HttpMessage message)Deprecated.Creates a transfer codec based on properties of the given HTTP message and returnsOutputStreaminstance that transparently encodes output data as it is being written out to the output stream.voidEntitySerializer. serialize(SessionOutputBuffer outbuffer, HttpMessage message, HttpEntity entity)Deprecated.Writes out the content of the given HTTP entity to the session output buffer based on properties of the given HTTP message. -
Uses of HttpMessage in org.apache.http.impl.io
Classes in org.apache.http.impl.io with type parameters of type HttpMessage Modifier and Type Class Description classAbstractMessageParser<T extends HttpMessage>Abstract base class for HTTP message parsers that obtain input from an instance ofSessionInputBuffer.classAbstractMessageWriter<T extends HttpMessage>Abstract base class for HTTP message writers that serialize output to an instance ofSessionOutputBuffer.Methods in org.apache.http.impl.io that return HttpMessage Modifier and Type Method Description protected HttpMessageHttpRequestParser. parseHead(SessionInputBuffer sessionBuffer)Deprecated.protected HttpMessageHttpResponseParser. parseHead(SessionInputBuffer sessionBuffer)Deprecated. -
Uses of HttpMessage in org.apache.http.io
Classes in org.apache.http.io with type parameters of type HttpMessage Modifier and Type Interface Description interfaceHttpMessageParser<T extends HttpMessage>Abstract message parser intended to build HTTP messages from an arbitrary data source.interfaceHttpMessageParserFactory<T extends HttpMessage>Factory forHttpMessageParserinstances.interfaceHttpMessageWriter<T extends HttpMessage>Abstract message writer intended to serialize HTTP messages to an arbitrary data sink.interfaceHttpMessageWriterFactory<T extends HttpMessage>Factory forHttpMessageWriterinstances. -
Uses of HttpMessage in org.apache.http.message
Classes in org.apache.http.message that implement HttpMessage Modifier and Type Class Description classAbstractHttpMessageBasic implementation ofHttpMessage.classBasicHttpEntityEnclosingRequestBasic implementation ofHttpEntityEnclosingRequest.classBasicHttpRequestBasic implementation ofHttpRequest.classBasicHttpResponseBasic implementation ofHttpResponse.
-