AuthenticationHandlerDefaultProxyAuthenticationHandler, DefaultTargetAuthenticationHandlerAuthenticationStrategy@Deprecated @Contract(threading=IMMUTABLE) public abstract class AbstractAuthenticationHandler extends java.lang.Object implements AuthenticationHandler
AuthenticationHandler implementations.| Constructor | Description |
|---|---|
AbstractAuthenticationHandler() |
Deprecated.
|
| Modifier and Type | Method | Description |
|---|---|---|
protected java.util.List<java.lang.String> |
getAuthPreferences() |
Deprecated.
Returns default list of auth scheme names in their order of preference.
|
protected java.util.List<java.lang.String> |
getAuthPreferences(org.apache.http.HttpResponse response,
org.apache.http.protocol.HttpContext context) |
Deprecated.
Returns default list of auth scheme names in their order of preference
based on the HTTP response and the current execution context.
|
protected java.util.Map<java.lang.String,org.apache.http.Header> |
parseChallenges(org.apache.http.Header[] headers) |
Deprecated.
|
AuthScheme |
selectScheme(java.util.Map<java.lang.String,org.apache.http.Header> challenges,
org.apache.http.HttpResponse response,
org.apache.http.protocol.HttpContext context) |
Deprecated.
Selects one authentication challenge out of all available and
creates and generates
AuthScheme instance capable of
processing that challenge. |
getChallenges, isAuthenticationRequestedpublic AbstractAuthenticationHandler()
protected java.util.Map<java.lang.String,org.apache.http.Header> parseChallenges(org.apache.http.Header[] headers)
throws MalformedChallengeException
MalformedChallengeExceptionprotected java.util.List<java.lang.String> getAuthPreferences()
protected java.util.List<java.lang.String> getAuthPreferences(org.apache.http.HttpResponse response,
org.apache.http.protocol.HttpContext context)
response - HTTP response.context - HTTP execution context.public AuthScheme selectScheme(java.util.Map<java.lang.String,org.apache.http.Header> challenges, org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context) throws AuthenticationException
AuthenticationHandlerAuthScheme instance capable of
processing that challenge.selectScheme in interface AuthenticationHandlerchallenges - collection of challenges.response - HTTP response.context - HTTP context.AuthenticationException - if an authentication scheme
could not be selected.