Uses of Interface
org.apache.http.message.LineParser
Packages that use LineParser
Package
Description
Default implementations of message parses and writers
for synchronous, blocking communication.
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 LineParserMethods in org.apache.http.impl.io with parameters of type LineParserModifier and TypeMethodDescriptionstatic 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, 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.Constructors in org.apache.http.impl.io with parameters of type LineParserModifierConstructorDescriptionAbstractMessageParser
(SessionInputBuffer buffer, LineParser lineParser, MessageConstraints constraints) Creates new instance of AbstractMessageParser.AbstractMessageParser
(SessionInputBuffer buffer, LineParser parser, HttpParams params) Deprecated.DefaultHttpRequestParser
(SessionInputBuffer buffer, LineParser lineParser, HttpRequestFactory requestFactory, MessageConstraints constraints) Creates new instance of DefaultHttpRequestParser.DefaultHttpRequestParser
(SessionInputBuffer buffer, LineParser lineParser, HttpRequestFactory requestFactory, HttpParams params) DefaultHttpRequestParserFactory
(LineParser lineParser, HttpRequestFactory requestFactory) DefaultHttpResponseParser
(SessionInputBuffer buffer, LineParser lineParser, HttpResponseFactory responseFactory, MessageConstraints constraints) Creates new instance of DefaultHttpResponseParser.DefaultHttpResponseParser
(SessionInputBuffer buffer, LineParser lineParser, HttpResponseFactory responseFactory, HttpParams params) DefaultHttpResponseParserFactory
(LineParser lineParser, HttpResponseFactory responseFactory) HttpRequestParser
(SessionInputBuffer buffer, LineParser parser, HttpRequestFactory requestFactory, HttpParams params) Deprecated.Creates an instance of this class.HttpResponseParser
(SessionInputBuffer buffer, LineParser parser, HttpResponseFactory responseFactory, HttpParams params) Deprecated.Creates an instance of this class. -
Uses of LineParser in org.apache.http.message
Classes in org.apache.http.message that implement LineParserModifier and TypeClassDescriptionclass
Basic parser for lines in the head section of an HTTP message.Methods in org.apache.http.message with parameters of type LineParserModifier and TypeMethodDescriptionstatic Header
BasicLineParser.parseHeader
(String value, LineParser parser) static ProtocolVersion
BasicLineParser.parseProtocolVersion
(String value, LineParser parser) static RequestLine
BasicLineParser.parseRequestLine
(String value, LineParser parser) static StatusLine
BasicLineParser.parseStatusLine
(String value, LineParser parser)
AbstractMessageParser(SessionInputBuffer, LineParser, MessageConstraints)