Package | Description |
---|---|
org.apache.http.auth |
Client HTTP authentication APIs.
|
org.apache.http.client |
Client HTTP communication APIs.
|
org.apache.http.impl.auth |
Default implementations of standard and common HTTP authentication
schemes.
|
org.apache.http.impl.client |
Default HTTP client implementation.
|
Modifier and Type | Method and Description |
---|---|
void |
AuthScheme.processChallenge(Header header)
Processes the given challenge token.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,Header> |
AuthenticationStrategy.getChallenges(HttpHost authhost,
HttpResponse response,
HttpContext context)
Extracts from the given HTTP response a collection of authentication
challenges, each of which represents an authentication scheme supported
by the authentication host.
|
java.util.Map<java.lang.String,Header> |
AuthenticationHandler.getChallenges(HttpResponse response,
HttpContext context)
Deprecated.
Extracts from the given HTTP response a collection of authentication
challenges, each of which represents an authentication scheme supported
by the authentication host.
|
java.util.Queue<AuthOption> |
AuthenticationStrategy.select(java.util.Map<java.lang.String,Header> challenges,
HttpHost authhost,
HttpResponse response,
HttpContext context)
Selects one authentication challenge out of all available and
creates and generates
AuthOption instance capable of
processing that challenge. |
Modifier and Type | Method and Description |
---|---|
protected void |
GGSSchemeBase.parseChallenge(CharArrayBuffer buffer,
int beginIndex,
int endIndex) |
protected abstract void |
AuthSchemeBase.parseChallenge(CharArrayBuffer buffer,
int beginIndex,
int endIndex) |
protected void |
NTLMScheme.parseChallenge(CharArrayBuffer buffer,
int beginIndex,
int endIndex) |
protected void |
RFC2617Scheme.parseChallenge(CharArrayBuffer buffer,
int pos,
int len) |
void |
AuthSchemeBase.processChallenge(Header header)
Processes the given challenge token.
|
void |
DigestScheme.processChallenge(Header header)
Processes the Digest challenge.
|
void |
BasicScheme.processChallenge(Header header)
Processes the Basic challenge.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,Header> |
AuthenticationStrategyAdaptor.getChallenges(HttpHost authhost,
HttpResponse response,
HttpContext context)
Deprecated.
|
java.util.Map<java.lang.String,Header> |
AuthenticationStrategyImpl.getChallenges(HttpHost authhost,
HttpResponse response,
HttpContext context)
Generates a map of challenge auth-scheme => Header entries.
|
java.util.Map<java.lang.String,Header> |
DefaultTargetAuthenticationHandler.getChallenges(HttpResponse response,
HttpContext context)
Deprecated.
|
java.util.Map<java.lang.String,Header> |
DefaultProxyAuthenticationHandler.getChallenges(HttpResponse response,
HttpContext context)
Deprecated.
|
protected java.util.Map<java.lang.String,Header> |
AbstractAuthenticationHandler.parseChallenges(Header[] headers)
Deprecated.
|
java.util.Queue<AuthOption> |
AuthenticationStrategyAdaptor.select(java.util.Map<java.lang.String,Header> challenges,
HttpHost authhost,
HttpResponse response,
HttpContext context)
Deprecated.
|
java.util.Queue<AuthOption> |
AuthenticationStrategyImpl.select(java.util.Map<java.lang.String,Header> challenges,
HttpHost authhost,
HttpResponse response,
HttpContext context) |