Uses of Interface
org.apache.http.auth.AuthScheme
Packages that use AuthScheme
Package
Description
Client HTTP authentication APIs.
Client HTTP communication APIs.
Default implementations of standard and common HTTP authentication
schemes.
Default HTTP client implementation.
-
Uses of AuthScheme in org.apache.http.auth
Subinterfaces of AuthScheme in org.apache.http.authModifier and TypeInterfaceDescriptioninterface
This interface represents an extended authentication scheme that requires access toHttpContext
in order to generate an authorization string.Methods in org.apache.http.auth that return AuthSchemeModifier and TypeMethodDescriptionAuthSchemeProvider.create
(org.apache.http.protocol.HttpContext context) Creates an instance ofAuthScheme
.AuthOption.getAuthScheme()
AuthSchemeRegistry.getAuthScheme
(String name, org.apache.http.params.HttpParams params) Deprecated.Gets theauthentication scheme
with the given name.AuthState.getAuthScheme()
Returns actualAuthScheme
.AuthSchemeFactory.newInstance
(org.apache.http.params.HttpParams params) Deprecated.Creates an instance ofAuthScheme
using given HTTP parameters.Methods in org.apache.http.auth with parameters of type AuthSchemeModifier and TypeMethodDescriptionvoid
AuthState.setAuthScheme
(AuthScheme authScheme) Deprecated.void
AuthState.update
(AuthScheme authScheme, Credentials credentials) Updates the auth state withAuthScheme
andCredentials
.Constructors in org.apache.http.auth with parameters of type AuthScheme -
Uses of AuthScheme in org.apache.http.client
Methods in org.apache.http.client that return AuthSchemeModifier and TypeMethodDescriptionAuthCache.get
(org.apache.http.HttpHost host) AuthenticationHandler.selectScheme
(Map<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 generatesAuthScheme
instance capable of processing that challenge.Methods in org.apache.http.client with parameters of type AuthSchemeModifier and TypeMethodDescriptionvoid
AuthenticationStrategy.authFailed
(org.apache.http.HttpHost authhost, AuthScheme authScheme, org.apache.http.protocol.HttpContext context) Callback invoked in case of unsuccessful authentication.void
AuthenticationStrategy.authSucceeded
(org.apache.http.HttpHost authhost, AuthScheme authScheme, org.apache.http.protocol.HttpContext context) Callback invoked in case of successful authentication.void
AuthCache.put
(org.apache.http.HttpHost host, AuthScheme authScheme) -
Uses of AuthScheme in org.apache.http.impl.auth
Classes in org.apache.http.impl.auth that implement AuthSchemeModifier and TypeClassDescriptionclass
Abstract authentication scheme class that serves as a basis for all authentication schemes supported by HttpClient.class
Basic authentication scheme as defined in RFC 2617.class
Digest authentication scheme as defined in RFC 2617.class
class
KERBEROS authentication scheme.class
Deprecated.(4.2) useSPNegoScheme
orKerberosScheme
.class
NTLM is a proprietary authentication scheme developed by Microsoft and optimized for Windows platforms.class
Abstract authentication scheme class that lays foundation for all RFC 2617 compliant authentication schemes and provides capabilities common to all authentication schemes defined in RFC 2617.class
SPNEGO (Simple and Protected GSSAPI Negotiation Mechanism) authentication scheme.Methods in org.apache.http.impl.auth that return AuthSchemeModifier and TypeMethodDescriptionBasicSchemeFactory.create
(org.apache.http.protocol.HttpContext context) DigestSchemeFactory.create
(org.apache.http.protocol.HttpContext context) KerberosSchemeFactory.create
(org.apache.http.protocol.HttpContext context) NTLMSchemeFactory.create
(org.apache.http.protocol.HttpContext context) SPNegoSchemeFactory.create
(org.apache.http.protocol.HttpContext context) BasicSchemeFactory.newInstance
(org.apache.http.params.HttpParams params) DigestSchemeFactory.newInstance
(org.apache.http.params.HttpParams params) KerberosSchemeFactory.newInstance
(org.apache.http.params.HttpParams params) NegotiateSchemeFactory.newInstance
(org.apache.http.params.HttpParams params) Deprecated.NTLMSchemeFactory.newInstance
(org.apache.http.params.HttpParams params) SPNegoSchemeFactory.newInstance
(org.apache.http.params.HttpParams params) -
Uses of AuthScheme in org.apache.http.impl.client
Methods in org.apache.http.impl.client that return AuthSchemeModifier and TypeMethodDescriptionBasicAuthCache.get
(org.apache.http.HttpHost host) AbstractAuthenticationHandler.selectScheme
(Map<String, org.apache.http.Header> challenges, org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context) Deprecated.Methods in org.apache.http.impl.client with parameters of type AuthSchemeModifier and TypeMethodDescriptionvoid
BasicAuthCache.put
(org.apache.http.HttpHost host, AuthScheme authScheme)
AuthState.update(AuthScheme, Credentials)