Uses of Interface
org.apache.hc.client5.http.auth.Credentials
-
Packages that use Credentials 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.org.apache.hc.client5.http.impl.classic Classic HTTP client API implementation that supports HTTP/1.1 transport only. -
-
Uses of Credentials in org.apache.hc.client5.http.auth
Classes in org.apache.hc.client5.http.auth that implement Credentials Modifier and Type Class Description classBearerTokenOpaque tokenCredentialsusually representing a set of claims, often encrypted or signed.classKerberosCredentialsDeprecated.Do not use.classNTCredentialsDeprecated.Do not use.classUsernamePasswordCredentialsSimpleCredentialsrepresentation based on a user name / password pair.Methods in org.apache.hc.client5.http.auth that return Credentials Modifier and Type Method Description CredentialsCredentialsProvider. getCredentials(AuthScope authScope, org.apache.hc.core5.http.protocol.HttpContext context)Returnscredentialsfor the given authentication scope, if available.Methods in org.apache.hc.client5.http.auth with parameters of type Credentials Modifier and Type Method Description voidCredentialsStore. setCredentials(AuthScope authScope, Credentials credentials)Sets thecredentialsfor the given authentication scope. -
Uses of Credentials in org.apache.hc.client5.http.fluent
Methods in org.apache.hc.client5.http.fluent with parameters of type Credentials Modifier and Type Method Description ExecutorExecutor. auth(java.lang.String host, Credentials credentials)ExecutorExecutor. auth(AuthScope authScope, Credentials credentials)ExecutorExecutor. auth(org.apache.hc.core5.http.HttpHost host, Credentials credentials) -
Uses of Credentials in org.apache.hc.client5.http.impl.auth
Fields in org.apache.hc.client5.http.impl.auth declared as Credentials Modifier and Type Field Description (package private) CredentialsCredentialsProviderBuilder.Entry. credentialsprivate CredentialsSingleCredentialsProvider. credentialsFields in org.apache.hc.client5.http.impl.auth with type parameters of type Credentials 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 that return Credentials Modifier and Type Method Description 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)(package private) static CredentialsCredentialsMatcher. matchCredentials(java.util.Map<AuthScope,Credentials> map, AuthScope authScope)Find matchingcredentialsfor the given authentication scope.Methods in org.apache.hc.client5.http.impl.auth with parameters of type Credentials Modifier and Type Method Description CredentialsProviderBuilderCredentialsProviderBuilder. add(AuthScope authScope, Credentials credentials)CredentialsProviderBuilderCredentialsProviderBuilder. add(org.apache.hc.core5.http.HttpHost httpHost, Credentials credentials)voidBasicScheme. initPreemptive(Credentials credentials)voidDigestScheme. initPreemptive(Credentials credentials, java.lang.String cnonce, java.lang.String realm)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 Credentials 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 Credentials Constructor Description Entry(AuthScope authScope, Credentials credentials)SingleCredentialsProvider(AuthScope authScope, Credentials credentials)Constructor parameters in org.apache.hc.client5.http.impl.auth with type arguments of type Credentials Constructor Description FixedCredentialsProvider(java.util.Map<AuthScope,Credentials> credMap) -
Uses of Credentials in org.apache.hc.client5.http.impl.classic
Methods in org.apache.hc.client5.http.impl.classic with parameters of type Credentials Modifier and Type Method Description java.net.SocketProxyClient. tunnel(org.apache.hc.core5.http.HttpHost proxy, org.apache.hc.core5.http.HttpHost target, Credentials credentials)
-