Uses of Class
org.apache.commons.httpclient.auth.AuthenticationException

Packages that use AuthenticationException
org.apache.commons.httpclient.auth Provides implementation of various authentication schemes as well as utility classes that can be used to authenticate HTTP requests. 
 

Uses of AuthenticationException in org.apache.commons.httpclient.auth
 

Subclasses of AuthenticationException in org.apache.commons.httpclient.auth
 class AuthChallengeException
          Signals a failure processing authentication challenge
 class CredentialsNotAvailableException
          Authentication credentials required to respond to a authentication challenge are not available
 class InvalidCredentialsException
          Authentication credentials required to respond to a authentication challenge are invalid
 

Methods in org.apache.commons.httpclient.auth that throw AuthenticationException
static boolean HttpAuthenticator.authenticate(AuthScheme authscheme, HttpMethod method, HttpConnection conn, HttpState state)
          Deprecated. use AuthScheme
 String BasicScheme.authenticate(Credentials credentials, HttpMethod method)
          Produces basic authorization string for the given set of Credentials.
 String DigestScheme.authenticate(Credentials credentials, HttpMethod method)
          Produces a digest authorization string for the given set of Credentials, method name and URI.
 String AuthScheme.authenticate(Credentials credentials, HttpMethod method)
          Produces an authorization string for the given set of Credentials.
 String NTLMScheme.authenticate(Credentials credentials, HttpMethod method)
          Produces NTLM authorization string for the given set of Credentials.
 String BasicScheme.authenticate(Credentials credentials, String method, String uri)
          Deprecated. Use BasicScheme.authenticate(Credentials, HttpMethod)
 String DigestScheme.authenticate(Credentials credentials, String method, String uri)
          Deprecated. Use DigestScheme.authenticate(Credentials, HttpMethod)
 String AuthScheme.authenticate(Credentials credentials, String method, String uri)
          Deprecated. Use AuthScheme.authenticate(Credentials, HttpMethod) Produces an authorization string for the given set of Credentials, method name and URI using the given authentication scheme in response to the actual authorization challenge.
 String NTLMScheme.authenticate(Credentials credentials, String method, String uri)
          Deprecated. Use NTLMScheme.authenticate(Credentials, HttpMethod)
static String NTLMScheme.authenticate(NTCredentials credentials, String challenge)
          Deprecated. Use non-static NTLMScheme.authenticate(Credentials, HttpMethod)
static String NTLMScheme.authenticate(NTCredentials credentials, String challenge, String charset)
          Deprecated. Use non-static NTLMScheme.authenticate(Credentials, HttpMethod)
static boolean HttpAuthenticator.authenticateDefault(HttpMethod method, HttpConnection conn, HttpState state)
          Deprecated. use AuthScheme
static boolean HttpAuthenticator.authenticateProxy(AuthScheme authscheme, HttpMethod method, HttpConnection conn, HttpState state)
          Deprecated. use AuthScheme
static boolean HttpAuthenticator.authenticateProxyDefault(HttpMethod method, HttpConnection conn, HttpState state)
          Deprecated. use AuthScheme
 AuthScheme AuthChallengeProcessor.processChallenge(AuthState state, Map challenges)
          Processes the given collection of challenges and updates the state of the authentication process.
 



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