Uses of Class
org.apache.http.auth.AuthScope
-
Packages that use AuthScope Package Description org.apache.http.auth Client HTTP authentication APIs.org.apache.http.client Client HTTP communication APIs.org.apache.http.impl.client Default HTTP client implementation. -
-
Uses of AuthScope in org.apache.http.auth
Fields in org.apache.http.auth declared as AuthScope Modifier and Type Field Description static AuthScopeAuthScope. ANYDefault scope matching any host, port, realm and authentication scheme.private AuthScopeAuthState. authScopeActual authentication scopeMethods in org.apache.http.auth that return AuthScope Modifier and Type Method Description AuthScopeAuthState. getAuthScope()Deprecated.(4.2) do not use.Methods in org.apache.http.auth with parameters of type AuthScope Modifier and Type Method Description intAuthScope. match(AuthScope that)Tests if the authentication scopes match.voidAuthState. setAuthScope(AuthScope authScope)Deprecated.(4.2) do not use.Constructors in org.apache.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.http.client
Methods in org.apache.http.client with parameters of type AuthScope Modifier and Type Method Description CredentialsCredentialsProvider. getCredentials(AuthScope authscope)Get thecredentialsfor the given authentication scope.voidCredentialsProvider. setCredentials(AuthScope authscope, Credentials credentials)Sets thecredentialsfor the given authentication scope. -
Uses of AuthScope in org.apache.http.impl.client
Fields in org.apache.http.impl.client with type parameters of type AuthScope Modifier and Type Field Description private java.util.concurrent.ConcurrentHashMap<AuthScope,Credentials>BasicCredentialsProvider. credMapMethods in org.apache.http.impl.client with parameters of type AuthScope Modifier and Type Method Description CredentialsBasicCredentialsProvider. getCredentials(AuthScope authscope)CredentialsSystemDefaultCredentialsProvider. getCredentials(AuthScope authscope)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)private static CredentialsBasicCredentialsProvider. 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.http.impl.client with type arguments of type AuthScope Modifier and Type Method Description private static CredentialsBasicCredentialsProvider. matchCredentials(java.util.Map<AuthScope,Credentials> map, AuthScope authscope)Find matchingcredentialsfor the given authentication scope.
-