Uses of Class
org.apache.hc.client5.http.auth.AuthScope
-
Packages that use AuthScope Package Description org.apache.hc.client5.http.auth Client HTTP authentication APIs.org.apache.hc.client5.http.fluent Simple facade APIs for HttpClient based on the concept of a fluent interface.org.apache.hc.client5.http.impl.auth Standard and common HTTP authentication schemes. -
-
Uses of AuthScope in org.apache.hc.client5.http.auth
Methods in org.apache.hc.client5.http.auth with parameters of type AuthScope Modifier and Type Method Description Credentials
CredentialsProvider. getCredentials(AuthScope authScope, org.apache.hc.core5.http.protocol.HttpContext context)
Returnscredentials
for the given authentication scope, if available.int
AuthScope. match(AuthScope that)
Tests if the authentication scopes match.void
CredentialsStore. setCredentials(AuthScope authScope, Credentials credentials)
Sets thecredentials
for the given authentication scope.Constructors in org.apache.hc.client5.http.auth with parameters of type AuthScope Constructor Description AuthScope(AuthScope authScope)
Creates a copy of the given credentials scope. -
Uses of AuthScope in org.apache.hc.client5.http.fluent
Methods in org.apache.hc.client5.http.fluent with parameters of type AuthScope Modifier and Type Method Description Executor
Executor. auth(AuthScope authScope, Credentials credentials)
-
Uses of AuthScope in org.apache.hc.client5.http.impl.auth
Fields in org.apache.hc.client5.http.impl.auth declared as AuthScope Modifier and Type Field Description (package private) AuthScope
CredentialsProviderBuilder.Entry. authScope
private AuthScope
SingleCredentialsProvider. authScope
Fields in org.apache.hc.client5.http.impl.auth with type parameters of type AuthScope Modifier and Type Field Description private java.util.concurrent.ConcurrentHashMap<AuthScope,Credentials>
BasicCredentialsProvider. credMap
private java.util.Map<AuthScope,Credentials>
CredentialsProviderBuilder. credMap
private java.util.Map<AuthScope,Credentials>
FixedCredentialsProvider. credMap
Methods in org.apache.hc.client5.http.impl.auth with parameters of type AuthScope Modifier and Type Method Description CredentialsProviderBuilder
CredentialsProviderBuilder. add(AuthScope authScope, java.lang.String username, char[] password)
CredentialsProviderBuilder
CredentialsProviderBuilder. add(AuthScope authScope, Credentials credentials)
Credentials
BasicCredentialsProvider. getCredentials(AuthScope authScope, org.apache.hc.core5.http.protocol.HttpContext context)
Credentials
FixedCredentialsProvider. getCredentials(AuthScope authScope, org.apache.hc.core5.http.protocol.HttpContext context)
Credentials
SingleCredentialsProvider. getCredentials(AuthScope authScope, org.apache.hc.core5.http.protocol.HttpContext context)
Credentials
SystemDefaultCredentialsProvider. getCredentials(AuthScope authScope, org.apache.hc.core5.http.protocol.HttpContext context)
private static java.net.PasswordAuthentication
SystemDefaultCredentialsProvider. getProxyCredentials(java.lang.String protocol, AuthScope authScope)
private static java.net.PasswordAuthentication
SystemDefaultCredentialsProvider. getSystemCreds(java.lang.String protocol, AuthScope authScope, java.net.Authenticator.RequestorType requestorType, HttpClientContext context)
(package private) static Credentials
CredentialsMatcher. matchCredentials(java.util.Map<AuthScope,Credentials> map, AuthScope authScope)
Find matchingcredentials
for the given authentication scope.void
BasicCredentialsProvider. setCredentials(AuthScope authScope, Credentials credentials)
void
SystemDefaultCredentialsProvider. setCredentials(AuthScope authScope, Credentials credentials)
Method parameters in org.apache.hc.client5.http.impl.auth with type arguments of type AuthScope Modifier and Type Method Description (package private) static Credentials
CredentialsMatcher. matchCredentials(java.util.Map<AuthScope,Credentials> map, AuthScope authScope)
Find matchingcredentials
for the given authentication scope.Constructors in org.apache.hc.client5.http.impl.auth with parameters of type AuthScope Constructor Description Entry(AuthScope authScope, Credentials credentials)
SingleCredentialsProvider(AuthScope authScope, java.lang.String username, char[] password)
SingleCredentialsProvider(AuthScope authScope, Credentials credentials)
Constructor parameters in org.apache.hc.client5.http.impl.auth with type arguments of type AuthScope Constructor Description FixedCredentialsProvider(java.util.Map<AuthScope,Credentials> credMap)
-