Fields Summary |
---|
public static final String | CONNECTION_MANAGER_FACTORY_CLASS_NAMEDefines the class name of the default {@link org.apache.http.conn.ClientConnectionManager}
This parameter expects a value of type {@link String}.
|
public static final String | CONNECTION_MANAGER_FACTORYDefines the factory to create a default {@link org.apache.http.conn.ClientConnectionManager}.
This parameters expects a value of type {@link org.apache.http.conn.ClientConnectionManagerFactory}.
|
public static final String | HANDLE_REDIRECTSDefines whether redirects should be handled automatically
This parameter expects a value of type {@link Boolean}.
|
public static final String | REJECT_RELATIVE_REDIRECTDefines whether relative redirects should be rejected.
This parameter expects a value of type {@link Boolean}.
|
public static final String | MAX_REDIRECTSDefines the maximum number of redirects to be followed.
The limit on number of redirects is intended to prevent infinite loops.
This parameter expects a value of type {@link Integer}.
|
public static final String | ALLOW_CIRCULAR_REDIRECTSDefines whether circular redirects (redirects to the same location) should be allowed.
The HTTP spec is not sufficiently clear whether circular redirects are permitted,
therefore optionally they can be enabled
This parameter expects a value of type {@link Boolean}.
|
public static final String | HANDLE_AUTHENTICATIONDefines whether authentication should be handled automatically.
This parameter expects a value of type {@link Boolean}.
|
public static final String | COOKIE_POLICYDefines the name of the cookie specification to be used for HTTP state management.
This parameter expects a value of type {@link String}.
|
public static final String | VIRTUAL_HOSTDefines the virtual host name.
This parameter expects a value of type {@link org.apache.http.HttpHost}.
|
public static final String | DEFAULT_HEADERSDefines the request headers to be sent per default with each request.
This parameter expects a value of type {@link java.util.Collection}. The
collection is expected to contain {@link org.apache.http.Header}s.
|
public static final String | DEFAULT_HOSTDefines the default host. The default value will be used if the target host is
not explicitly specified in the request URI.
This parameter expects a value of type {@link org.apache.http.HttpHost}.
|