Uses of Interface
org.apache.http.auth.AuthSchemeFactory
-
Packages that use AuthSchemeFactory Package Description org.apache.http.auth Client HTTP authentication APIs.org.apache.http.impl.auth Default implementations of standard and common HTTP authentication schemes. -
-
Uses of AuthSchemeFactory in org.apache.http.auth
Fields in org.apache.http.auth with type parameters of type AuthSchemeFactory Modifier and Type Field Description private java.util.concurrent.ConcurrentHashMap<java.lang.String,AuthSchemeFactory>
AuthSchemeRegistry. registeredSchemes
Deprecated.Methods in org.apache.http.auth with parameters of type AuthSchemeFactory Modifier and Type Method Description void
AuthSchemeRegistry. register(java.lang.String name, AuthSchemeFactory factory)
Deprecated.Registers aAuthSchemeFactory
with the given identifier.Method parameters in org.apache.http.auth with type arguments of type AuthSchemeFactory Modifier and Type Method Description void
AuthSchemeRegistry. setItems(java.util.Map<java.lang.String,AuthSchemeFactory> map)
Deprecated.Populates the internal collection of registeredauthentication schemes
with the content of the map passed as a parameter. -
Uses of AuthSchemeFactory in org.apache.http.impl.auth
Classes in org.apache.http.impl.auth that implement AuthSchemeFactory Modifier and Type Class Description class
BasicSchemeFactory
AuthSchemeProvider
implementation that creates and initializesBasicScheme
instances.class
DigestSchemeFactory
AuthSchemeProvider
implementation that creates and initializesDigestScheme
instances.class
KerberosSchemeFactory
AuthSchemeProvider
implementation that creates and initializesKerberosScheme
instances.class
NegotiateSchemeFactory
Deprecated.(4.2) useSPNegoSchemeFactory
orKerberosSchemeFactory
.class
NTLMSchemeFactory
AuthSchemeProvider
implementation that creates and initializesNTLMScheme
instances configured to use the defaultNTLMEngine
implementation.class
SPNegoSchemeFactory
AuthSchemeProvider
implementation that creates and initializesSPNegoScheme
instances.
-