Uses of Interface
org.apache.http.auth.Credentials

Packages that use Credentials
org.apache.http.auth The API for client-side HTTP authentication against a server, commonly referred to as HttpAuth
org.apache.http.client The API for client-side HTTP communication and entry point to the HttpClient module. 
org.apache.http.impl.auth   
org.apache.http.impl.client   
 

Uses of Credentials in org.apache.http.auth
 

Classes in org.apache.http.auth that implement Credentials
 class NTCredentials
          Credentials specific to the Windows platform.
 class UsernamePasswordCredentials
          Username and password Credentials
 

Methods in org.apache.http.auth that return Credentials
 Credentials AuthState.getCredentials()
          Returns user Credentials selected for authentication if available
 

Methods in org.apache.http.auth with parameters of type Credentials
 org.apache.http.Header AuthScheme.authenticate(Credentials credentials, org.apache.http.HttpRequest request)
          Produces an authorization string for the given set of Credentials.
 void AuthState.setCredentials(Credentials credentials)
          Sets user Credentials to be used for authentication
 

Uses of Credentials in org.apache.http.client
 

Methods in org.apache.http.client that return Credentials
 Credentials CredentialsProvider.getCredentials(AuthScope authscope)
          Get the credentials for the given authentication scope.
 

Methods in org.apache.http.client with parameters of type Credentials
 void CredentialsProvider.setCredentials(AuthScope authscope, Credentials credentials)
          Sets the credentials for the given authentication scope.
 

Uses of Credentials in org.apache.http.impl.auth
 

Methods in org.apache.http.impl.auth with parameters of type Credentials
 org.apache.http.Header DigestScheme.authenticate(Credentials credentials, org.apache.http.HttpRequest request)
          Produces a digest authorization string for the given set of Credentials, method name and URI.
 org.apache.http.Header NTLMScheme.authenticate(Credentials credentials, org.apache.http.HttpRequest request)
           
 org.apache.http.Header BasicScheme.authenticate(Credentials credentials, org.apache.http.HttpRequest request)
          Produces basic authorization header for the given set of Credentials.
static org.apache.http.Header BasicScheme.authenticate(Credentials credentials, java.lang.String charset, boolean proxy)
          Returns a basic Authorization header value for the given Credentials and charset.
 

Uses of Credentials in org.apache.http.impl.client
 

Methods in org.apache.http.impl.client that return Credentials
 Credentials BasicCredentialsProvider.getCredentials(AuthScope authscope)
          Get the credentials for the given authentication scope.
 

Methods in org.apache.http.impl.client with parameters of type Credentials
 void BasicCredentialsProvider.setCredentials(AuthScope authscope, Credentials credentials)
          Sets the credentials for the given authentication scope.
 



Copyright © 1999-2008 Apache Software Foundation. All Rights Reserved.