Package org.apache.http.auth.params
Interface AuthPNames
-
- All Known Subinterfaces:
AllClientPNames
@Deprecated public interface AuthPNames
Deprecated.(4.3) useRequestConfig
and constructor parameters ofAuthSchemeProvider
s.Parameter names for HTTP authentication classes.- Since:
- 4.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CREDENTIAL_CHARSET
Deprecated.Defines the charset to be used when encodingCredentials
.static java.lang.String
PROXY_AUTH_PREF
Deprecated.Defines the order of preference for supportedAuthScheme
s when authenticating with the proxy host.static java.lang.String
TARGET_AUTH_PREF
Deprecated.Defines the order of preference for supportedAuthScheme
s when authenticating with the target host.
-
-
-
Field Detail
-
CREDENTIAL_CHARSET
static final java.lang.String CREDENTIAL_CHARSET
Deprecated.Defines the charset to be used when encodingCredentials
.This parameter expects a value of type
String
.- See Also:
- Constant Field Values
-
TARGET_AUTH_PREF
static final java.lang.String TARGET_AUTH_PREF
Deprecated.Defines the order of preference for supportedAuthScheme
s when authenticating with the target host.This parameter expects a value of type
Collection
. The collection is expected to containString
instances representing a name of an authentication scheme as returned byAuthScheme.getSchemeName()
.- See Also:
- Constant Field Values
-
PROXY_AUTH_PREF
static final java.lang.String PROXY_AUTH_PREF
Deprecated.Defines the order of preference for supportedAuthScheme
s when authenticating with the proxy host.This parameter expects a value of type
Collection
. The collection is expected to containString
instances representing a name of an authentication scheme as returned byAuthScheme.getSchemeName()
.- See Also:
- Constant Field Values
-
-