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 CredentialsCredentialsProvider. getCredentials(AuthScope authScope, org.apache.hc.core5.http.protocol.HttpContext context)Returnscredentialsfor the given authentication scope, if available.intAuthScope. match(AuthScope that)Tests if the authentication scopes match.voidCredentialsStore. setCredentials(AuthScope authScope, Credentials credentials)Sets thecredentialsfor 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 ExecutorExecutor. 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) AuthScopeCredentialsProviderBuilder.Entry. authScopeprivate AuthScopeSingleCredentialsProvider. authScopeFields 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. credMapprivate java.util.Map<AuthScope,Credentials>CredentialsProviderBuilder. credMapprivate java.util.Map<AuthScope,Credentials>FixedCredentialsProvider. credMapMethods in org.apache.hc.client5.http.impl.auth with parameters of type AuthScope Modifier and Type Method Description CredentialsProviderBuilderCredentialsProviderBuilder. add(AuthScope authScope, java.lang.String username, char[] password)CredentialsProviderBuilderCredentialsProviderBuilder. add(AuthScope authScope, Credentials credentials)CredentialsBasicCredentialsProvider. getCredentials(AuthScope authScope, org.apache.hc.core5.http.protocol.HttpContext context)CredentialsFixedCredentialsProvider. getCredentials(AuthScope authScope, org.apache.hc.core5.http.protocol.HttpContext context)CredentialsSingleCredentialsProvider. getCredentials(AuthScope authScope, org.apache.hc.core5.http.protocol.HttpContext context)CredentialsSystemDefaultCredentialsProvider. getCredentials(AuthScope authScope, org.apache.hc.core5.http.protocol.HttpContext context)private static java.net.PasswordAuthenticationSystemDefaultCredentialsProvider. getProxyCredentials(java.lang.String protocol, AuthScope authScope)private static java.net.PasswordAuthenticationSystemDefaultCredentialsProvider. getSystemCreds(java.lang.String protocol, AuthScope authScope, java.net.Authenticator.RequestorType requestorType, HttpClientContext context)(package private) static CredentialsCredentialsMatcher. matchCredentials(java.util.Map<AuthScope,Credentials> map, AuthScope authScope)Find matchingcredentialsfor the given authentication scope.voidBasicCredentialsProvider. setCredentials(AuthScope authScope, Credentials credentials)voidSystemDefaultCredentialsProvider. 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 CredentialsCredentialsMatcher. matchCredentials(java.util.Map<AuthScope,Credentials> map, AuthScope authScope)Find matchingcredentialsfor 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)
-