Uses of Interface
org.apache.http.message.LineParser
-
Packages that use LineParser 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 LineParser in org.apache.http.impl.io
Fields in org.apache.http.impl.io declared as LineParser Modifier and Type Field Description protected LineParser
AbstractMessageParser. lineParser
private LineParser
DefaultHttpRequestParserFactory. lineParser
private LineParser
DefaultHttpResponseParserFactory. lineParser
Methods in org.apache.http.impl.io with parameters of type LineParser Modifier and Type Method Description static Header[]
AbstractMessageParser. parseHeaders(SessionInputBuffer inBuffer, int maxHeaderCount, int maxLineLen, LineParser parser)
Parses HTTP headers from the data receiver stream according to the generic format as given in Section 3.1 of RFC 822, RFC-2616 Section 4 and 19.3.static Header[]
AbstractMessageParser. parseHeaders(SessionInputBuffer inBuffer, int maxHeaderCount, int maxLineLen, LineParser parser, java.util.List<CharArrayBuffer> headerLines)
Parses HTTP headers from the data receiver stream according to the generic format as given in Section 3.1 of RFC 822, RFC-2616 Section 4 and 19.3. -
Uses of LineParser in org.apache.http.impl.nio.codecs
Fields in org.apache.http.impl.nio.codecs declared as LineParser Modifier and Type Field Description protected LineParser
AbstractMessageParser. lineParser
private LineParser
DefaultHttpRequestParserFactory. lineParser
private LineParser
DefaultHttpResponseParserFactory. lineParser
-
Uses of LineParser in org.apache.http.message
Classes in org.apache.http.message that implement LineParser Modifier and Type Class Description class
BasicLineParser
Basic parser for lines in the head section of an HTTP message.Methods in org.apache.http.message with parameters of type LineParser Modifier and Type Method Description static Header
BasicLineParser. parseHeader(java.lang.String value, LineParser parser)
static ProtocolVersion
BasicLineParser. parseProtocolVersion(java.lang.String value, LineParser parser)
static RequestLine
BasicLineParser. parseRequestLine(java.lang.String value, LineParser parser)
static StatusLine
BasicLineParser. parseStatusLine(java.lang.String value, LineParser parser)
-