Uses of Interface
org.apache.http.message.LineFormatter
-
Packages that use LineFormatter Package Description org.apache.http.impl.io Default implementations of message parses and writers for synchronous, blocking communication.org.apache.http.impl.nio.codecs Default implementations of message parses and writers for asynchronous, even driven communication.org.apache.http.message Core HTTP message components, message element parser and writer APIs and their default implementations. -
-
Uses of LineFormatter in org.apache.http.impl.io
Fields in org.apache.http.impl.io declared as LineFormatter Modifier and Type Field Description protected LineFormatter
AbstractMessageWriter. lineFormatter
private LineFormatter
DefaultHttpRequestWriterFactory. lineFormatter
private LineFormatter
DefaultHttpResponseWriterFactory. lineFormatter
Constructors in org.apache.http.impl.io with parameters of type LineFormatter Constructor Description AbstractMessageWriter(SessionOutputBuffer buffer, LineFormatter formatter)
Creates an instance of AbstractMessageWriter.AbstractMessageWriter(SessionOutputBuffer buffer, LineFormatter formatter, HttpParams params)
Deprecated.DefaultHttpRequestWriter(SessionOutputBuffer buffer, LineFormatter formatter)
Creates an instance of DefaultHttpRequestWriter.DefaultHttpRequestWriterFactory(LineFormatter lineFormatter)
DefaultHttpResponseWriter(SessionOutputBuffer buffer, LineFormatter formatter)
Creates an instance of DefaultHttpResponseWriter.DefaultHttpResponseWriterFactory(LineFormatter lineFormatter)
HttpRequestWriter(SessionOutputBuffer buffer, LineFormatter formatter, HttpParams params)
Deprecated.HttpResponseWriter(SessionOutputBuffer buffer, LineFormatter formatter, HttpParams params)
Deprecated. -
Uses of LineFormatter in org.apache.http.impl.nio.codecs
Fields in org.apache.http.impl.nio.codecs declared as LineFormatter Modifier and Type Field Description protected LineFormatter
AbstractMessageWriter. lineFormatter
private LineFormatter
DefaultHttpRequestWriterFactory. lineFormatter
private LineFormatter
DefaultHttpResponseWriterFactory. lineFormatter
-
Uses of LineFormatter in org.apache.http.message
Classes in org.apache.http.message that implement LineFormatter Modifier and Type Class Description class
BasicLineFormatter
Interface for formatting elements of the HEAD section of an HTTP message.Methods in org.apache.http.message with parameters of type LineFormatter Modifier and Type Method Description static java.lang.String
BasicLineFormatter. formatHeader(Header header, LineFormatter formatter)
Formats a header.static java.lang.String
BasicLineFormatter. formatProtocolVersion(ProtocolVersion version, LineFormatter formatter)
Formats a protocol version.static java.lang.String
BasicLineFormatter. formatRequestLine(RequestLine reqline, LineFormatter formatter)
Formats a request line.static java.lang.String
BasicLineFormatter. formatStatusLine(StatusLine statline, LineFormatter formatter)
Formats a status line.
-