Package | Description |
---|---|
org.apache.http |
Core HTTP component APIs and primitives.
|
org.apache.http.impl |
Default implementations of HTTP connections for synchronous,
blocking communication.
|
org.apache.http.message |
Core HTTP message components, message element parser
and writer APIs and their default implementations.
|
Modifier and Type | Method and Description |
---|---|
StatusLine |
HttpResponse.getStatusLine()
Obtains the status line of this response.
|
Modifier and Type | Method and Description |
---|---|
HttpResponse |
HttpResponseFactory.newHttpResponse(StatusLine statusline,
HttpContext context)
Creates a new response from a status line.
|
void |
HttpResponse.setStatusLine(StatusLine statusline)
Sets the status line of this response.
|
Modifier and Type | Method and Description |
---|---|
HttpResponse |
DefaultHttpResponseFactory.newHttpResponse(StatusLine statusline,
HttpContext context) |
Modifier and Type | Class and Description |
---|---|
class |
BasicStatusLine
Basic implementation of
StatusLine |
Modifier and Type | Method and Description |
---|---|
protected StatusLine |
BasicLineParser.createStatusLine(ProtocolVersion ver,
int status,
String reason)
Instantiates a new status line.
|
StatusLine |
BasicHttpResponse.getStatusLine() |
StatusLine |
LineParser.parseStatusLine(CharArrayBuffer buffer,
ParserCursor cursor)
Parses a status line.
|
StatusLine |
BasicLineParser.parseStatusLine(CharArrayBuffer buffer,
ParserCursor cursor) |
static StatusLine |
BasicLineParser.parseStatusLine(String value,
LineParser parser) |
Modifier and Type | Method and Description |
---|---|
protected void |
BasicLineFormatter.doFormatStatusLine(CharArrayBuffer buffer,
StatusLine statline)
Actually formats a status line.
|
CharArrayBuffer |
LineFormatter.formatStatusLine(CharArrayBuffer buffer,
StatusLine statline)
Formats a status line.
|
CharArrayBuffer |
BasicLineFormatter.formatStatusLine(CharArrayBuffer buffer,
StatusLine statline) |
static String |
BasicLineFormatter.formatStatusLine(StatusLine statline,
LineFormatter formatter)
Formats a status line.
|
void |
BasicHttpResponse.setStatusLine(StatusLine statusline) |
Constructor and Description |
---|
BasicHttpResponse(StatusLine statusline)
Creates a response from a status line.
|
BasicHttpResponse(StatusLine statusline,
ReasonPhraseCatalog catalog,
Locale locale)
Creates a new response.
|
Copyright © 2005–2022 The Apache Software Foundation. All rights reserved.