org.apache.http.client.params.AllClientPNames
Collected parameter names for the HttpClient module.
This interface combines the parameter definitions of the HttpClient
module and all dependency modules or informational units.
It does not define additional parameter names, but references
other interfaces defining parameter names.
This interface is meant as a navigation aid for developers.
When referring to parameter names, you should use the interfaces
in which the respective constants are actually defined.
Summary
ALLOW_CIRCULAR_REDIRECTS,
CONNECTION_MANAGER_FACTORY,
CONNECTION_MANAGER_FACTORY_CLASS_NAME,
COOKIE_POLICY,
DEFAULT_HEADERS,
DEFAULT_HOST,
HANDLE_AUTHENTICATION,
HANDLE_REDIRECTS,
MAX_REDIRECTS,
REJECT_RELATIVE_REDIRECT,
VIRTUAL_HOST
|
|
|
Value |
|
String |
MAX_STATUS_LINE_GARBAGE |
Defines the maximum number of ignorable lines before we expect
a HTTP response's status line. |
"http.connection.max-status-line-garbage" |
|
|
|
Value |
|
String |
CONNECTION_TIMEOUT |
Determines the timeout until a connection is etablished. |
"http.connection.timeout" |
String |
MAX_HEADER_COUNT |
Determines the maximum HTTP header count allowed. |
"http.connection.max-header-count" |
String |
MAX_LINE_LENGTH |
Determines the maximum line length limit. |
"http.connection.max-line-length" |
String |
SOCKET_BUFFER_SIZE |
Determines the size of the internal socket buffer used to buffer data
while receiving / transmitting HTTP messages. |
"http.socket.buffer-size" |
String |
SO_LINGER |
Sets SO_LINGER with the specified linger time in seconds. |
"http.socket.linger" |
String |
SO_TIMEOUT |
Defines the default socket timeout (SO_TIMEOUT) in milliseconds which is the
timeout for waiting for data. |
"http.socket.timeout" |
String |
STALE_CONNECTION_CHECK |
Determines whether stale connection check is to be used. |
"http.connection.stalecheck" |
String |
TCP_NODELAY |
Determines whether Nagle's algorithm is to be used. |
"http.tcp.nodelay" |
Details