Package org.apache.http.conn.params
Interface ConnRoutePNames
-
- All Known Subinterfaces:
AllClientPNames
- All Known Implementing Classes:
ConnRouteParams
@Deprecated public interface ConnRoutePNamesDeprecated.(4.3) useRequestConfig.Parameter names for connection routing.- Since:
- 4.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringDEFAULT_PROXYDeprecated.Parameter for the default proxy.static java.lang.StringFORCED_ROUTEDeprecated.Parameter for an forced route.static java.lang.StringLOCAL_ADDRESSDeprecated.Parameter for the local address.
-
-
-
Field Detail
-
DEFAULT_PROXY
static final java.lang.String DEFAULT_PROXY
Deprecated.Parameter for the default proxy. The default value will be used by someHttpRoutePlannerimplementations, in particular the default implementation.This parameter expects a value of type
HttpHost.- See Also:
- Constant Field Values
-
LOCAL_ADDRESS
static final java.lang.String LOCAL_ADDRESS
Deprecated.Parameter for the local address. On machines with multiple network interfaces, this parameter can be used to select the network interface from which the connection originates. It will be interpreted by the standardHttpRoutePlannerimplementations, in particular the default implementation.This parameter expects a value of type
InetAddress.- See Also:
- Constant Field Values
-
FORCED_ROUTE
static final java.lang.String FORCED_ROUTE
Deprecated.Parameter for an forced route. The forced route will be interpreted by the standardHttpRoutePlannerimplementations. Instead of computing a route, the given forced route will be returned, even if it points to the wrong target host.This parameter expects a value of type
HttpRoute.- See Also:
- Constant Field Values
-
-