Package | Description |
---|---|
org.apache.http.impl.conn |
Default implementations of client connection management
functions.
|
org.apache.http.impl.io |
Default implementations of message parses and writers
for synchronous, blocking communication.
|
org.apache.http.message |
Core HTTP message components, message element parser
and writer APIs and their default implementations.
|
Constructor and Description |
---|
DefaultHttpResponseParser(SessionInputBuffer buffer,
LineParser parser,
HttpResponseFactory responseFactory,
HttpParams params)
|
DefaultHttpResponseParser(SessionInputBuffer buffer,
LineParser lineParser,
HttpResponseFactory responseFactory,
MessageConstraints constraints)
Creates new instance of DefaultHttpResponseParser.
|
DefaultHttpResponseParserFactory(LineParser lineParser,
HttpResponseFactory responseFactory) |
DefaultResponseParser(SessionInputBuffer buffer,
LineParser parser,
HttpResponseFactory responseFactory,
HttpParams params)
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
protected LineParser |
AbstractMessageParser.lineParser |
Modifier and Type | Method and 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.
|
Modifier and Type | Class and Description |
---|---|
class |
BasicLineParser
Basic parser for lines in the head section of an HTTP message.
|
Modifier and Type | Method and 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) |