Uses of Interface
org.apache.http.auth.AuthScheme
Packages that use AuthScheme
Package
Description
Client HTTP authentication APIs.
Client HTTP communication APIs.
Client specific HTTP protocol handlers.
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 TypeInterfaceDescriptioninterfaceThis interface represents an extended authentication scheme that requires access toHttpContextin order to generate an authorization string.Fields in org.apache.http.auth declared as AuthSchemeModifier and TypeFieldDescriptionprivate final AuthSchemeAuthOption.authSchemeprivate AuthSchemeAuthState.authSchemeActual authentication schemeMethods 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 schemewith the given name.AuthState.getAuthScheme()Returns actualAuthScheme.AuthSchemeFactory.newInstance(org.apache.http.params.HttpParams params) Deprecated.Creates an instance ofAuthSchemeusing given HTTP parameters.Methods in org.apache.http.auth with parameters of type AuthSchemeModifier and TypeMethodDescriptionvoidAuthState.setAuthScheme(AuthScheme authScheme) Deprecated.voidAuthState.update(AuthScheme authScheme, Credentials credentials) Updates the auth state withAuthSchemeandCredentials.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 generatesAuthSchemeinstance capable of processing that challenge.Methods in org.apache.http.client with parameters of type AuthSchemeModifier and TypeMethodDescriptionvoidAuthenticationStrategy.authFailed(org.apache.http.HttpHost authhost, AuthScheme authScheme, org.apache.http.protocol.HttpContext context) Callback invoked in case of unsuccessful authentication.voidAuthenticationStrategy.authSucceeded(org.apache.http.HttpHost authhost, AuthScheme authScheme, org.apache.http.protocol.HttpContext context) Callback invoked in case of successful authentication.voidAuthCache.put(org.apache.http.HttpHost host, AuthScheme authScheme) -
Uses of AuthScheme in org.apache.http.client.protocol
Methods in org.apache.http.client.protocol with parameters of type AuthSchemeModifier and TypeMethodDescriptionprivate org.apache.http.HeaderRequestAuthenticationBase.authenticate(AuthScheme authScheme, Credentials creds, org.apache.http.HttpRequest request, org.apache.http.protocol.HttpContext context) Deprecated.private voidResponseAuthCache.cache(AuthCache authCache, org.apache.http.HttpHost host, AuthScheme authScheme) Deprecated.private voidRequestAuthCache.doPreemptiveAuth(org.apache.http.HttpHost host, AuthScheme authScheme, AuthState authState, CredentialsProvider credsProvider) private voidRequestAuthenticationBase.ensureAuthScheme(AuthScheme authScheme) Deprecated.private voidResponseAuthCache.uncache(AuthCache authCache, org.apache.http.HttpHost host, AuthScheme authScheme) Deprecated. -
Uses of AuthScheme in org.apache.http.impl.auth
Classes in org.apache.http.impl.auth that implement AuthSchemeModifier and TypeClassDescriptionclassAbstract authentication scheme class that serves as a basis for all authentication schemes supported by HttpClient.classBasic authentication scheme as defined in RFC 2617.classDigest authentication scheme as defined in RFC 2617.classclassKERBEROS authentication scheme.classDeprecated.(4.2) useSPNegoSchemeorKerberosScheme.classNTLM is a proprietary authentication scheme developed by Microsoft and optimized for Windows platforms.classAbstract 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.classSPNEGO (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) Methods in org.apache.http.impl.auth with parameters of type AuthSchemeModifier and TypeMethodDescriptionprivate org.apache.http.HeaderHttpAuthenticator.doAuth(AuthScheme authScheme, Credentials creds, org.apache.http.HttpRequest request, org.apache.http.protocol.HttpContext context) private voidHttpAuthenticator.ensureAuthScheme(AuthScheme authScheme) -
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 TypeMethodDescriptionvoidAuthenticationStrategyAdaptor.authFailed(org.apache.http.HttpHost authhost, AuthScheme authScheme, org.apache.http.protocol.HttpContext context) Deprecated.voidAuthenticationStrategyImpl.authFailed(org.apache.http.HttpHost authhost, AuthScheme authScheme, org.apache.http.protocol.HttpContext context) voidAuthenticationStrategyAdaptor.authSucceeded(org.apache.http.HttpHost authhost, AuthScheme authScheme, org.apache.http.protocol.HttpContext context) Deprecated.voidAuthenticationStrategyImpl.authSucceeded(org.apache.http.HttpHost authhost, AuthScheme authScheme, org.apache.http.protocol.HttpContext context) private booleanAuthenticationStrategyAdaptor.isCachable(AuthScheme authScheme) Deprecated.protected booleanAuthenticationStrategyImpl.isCachable(AuthScheme authScheme) voidBasicAuthCache.put(org.apache.http.HttpHost host, AuthScheme authScheme)
AuthState.update(AuthScheme, Credentials)