Uses of Interface
org.apache.http.auth.AuthScheme
-
Packages that use AuthScheme 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. -
-
Uses of AuthScheme in org.apache.http.auth
Subinterfaces of AuthScheme in org.apache.http.auth Modifier and Type Interface Description interfaceContextAwareAuthSchemeThis interface represents an extended authentication scheme that requires access toHttpContextin order to generate an authorization string.Methods in org.apache.http.auth that return AuthScheme Modifier and Type Method Description AuthSchemeAuthSchemeProvider. create(org.apache.http.protocol.HttpContext context)Creates an instance ofAuthScheme.AuthSchemeAuthOption. getAuthScheme()AuthSchemeAuthSchemeRegistry. getAuthScheme(java.lang.String name, org.apache.http.params.HttpParams params)Deprecated.Gets theauthentication schemewith the given name.AuthSchemeAuthState. getAuthScheme()Returns actualAuthScheme.AuthSchemeAuthSchemeFactory. 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 AuthScheme Modifier and Type Method Description voidAuthState. 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 Constructor Description AuthOption(AuthScheme authScheme, Credentials creds) -
Uses of AuthScheme in org.apache.http.client
Methods in org.apache.http.client that return AuthScheme Modifier and Type Method Description AuthSchemeAuthCache. get(org.apache.http.HttpHost host)AuthSchemeAuthenticationHandler. 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 generatesAuthSchemeinstance capable of processing that challenge.Methods in org.apache.http.client with parameters of type AuthScheme Modifier and Type Method Description voidAuthenticationStrategy. 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.impl.auth
Classes in org.apache.http.impl.auth that implement AuthScheme Modifier and Type Class Description classAuthSchemeBaseAbstract authentication scheme class that serves as a basis for all authentication schemes supported by HttpClient.classBasicSchemeBasic authentication scheme as defined in RFC 2617.classDigestSchemeDigest authentication scheme as defined in RFC 2617.classGGSSchemeBaseclassKerberosSchemeKERBEROS authentication scheme.classNegotiateSchemeDeprecated.(4.2) useSPNegoSchemeorKerberosScheme.classNTLMSchemeNTLM is a proprietary authentication scheme developed by Microsoft and optimized for Windows platforms.classRFC2617SchemeAbstract 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.classSPNegoSchemeSPNEGO (Simple and Protected GSSAPI Negotiation Mechanism) authentication scheme.Methods in org.apache.http.impl.auth that return AuthScheme Modifier and Type Method Description AuthSchemeBasicSchemeFactory. create(org.apache.http.protocol.HttpContext context)AuthSchemeDigestSchemeFactory. create(org.apache.http.protocol.HttpContext context)AuthSchemeKerberosSchemeFactory. create(org.apache.http.protocol.HttpContext context)AuthSchemeNTLMSchemeFactory. create(org.apache.http.protocol.HttpContext context)AuthSchemeSPNegoSchemeFactory. create(org.apache.http.protocol.HttpContext context)AuthSchemeBasicSchemeFactory. newInstance(org.apache.http.params.HttpParams params)AuthSchemeDigestSchemeFactory. newInstance(org.apache.http.params.HttpParams params)AuthSchemeKerberosSchemeFactory. newInstance(org.apache.http.params.HttpParams params)AuthSchemeNegotiateSchemeFactory. newInstance(org.apache.http.params.HttpParams params)Deprecated.AuthSchemeNTLMSchemeFactory. newInstance(org.apache.http.params.HttpParams params)AuthSchemeSPNegoSchemeFactory. 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 AuthScheme Modifier and Type Method Description AuthSchemeBasicAuthCache. get(org.apache.http.HttpHost host)AuthSchemeAbstractAuthenticationHandler. selectScheme(java.util.Map<java.lang.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 AuthScheme Modifier and Type Method Description voidBasicAuthCache. put(org.apache.http.HttpHost host, AuthScheme authScheme)
-