Uses of Interface
org.apache.commons.httpclient.auth.AuthScheme

Packages that use AuthScheme
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 AuthScheme in org.apache.commons.httpclient.auth
 

Classes in org.apache.commons.httpclient.auth that implement AuthScheme
 class AuthSchemeBase
          Deprecated. No longer used
 class BasicScheme
           Basic authentication scheme as defined in RFC 2617.
 class DigestScheme
           Digest authentication scheme as defined in RFC 2617.
 class NTLMScheme
          An implementation of the Microsoft proprietary NTLM authentication scheme.
 class RFC2617Scheme
           Abstract authentication scheme class that lays foundation for all RFC 2617 compliant authetication schemes and provides capabilities common to all authentication schemes defined in RFC 2617.
 

Methods in org.apache.commons.httpclient.auth that return AuthScheme
 AuthScheme AuthState.getAuthScheme()
          Returns the authentication scheme.
static AuthScheme AuthPolicy.getAuthScheme(String id)
          Gets the authentication scheme with the given ID.
 AuthScheme AuthChallengeProcessor.processChallenge(AuthState state, Map challenges)
          Processes the given collection of challenges and updates the state of the authentication process.
static AuthScheme HttpAuthenticator.selectAuthScheme(Header[] challenges)
          Deprecated. Use AuthChallengeParser.parseChallenges(Header[]) and AuthPolicy.getAuthScheme(String)
 AuthScheme AuthChallengeProcessor.selectAuthScheme(Map challenges)
          Determines the preferred authentication scheme that can be used to respond to the given collection of challenges.
 

Methods in org.apache.commons.httpclient.auth with parameters of type AuthScheme
static boolean HttpAuthenticator.authenticate(AuthScheme authscheme, HttpMethod method, HttpConnection conn, HttpState state)
          Deprecated. use AuthScheme
static boolean HttpAuthenticator.authenticateProxy(AuthScheme authscheme, HttpMethod method, HttpConnection conn, HttpState state)
          Deprecated. use AuthScheme
 Credentials CredentialsProvider.getCredentials(AuthScheme scheme, String host, int port, boolean proxy)
          Requests additional authentication credentials.
 void AuthState.setAuthScheme(AuthScheme authScheme)
          Assigns the given authentication scheme.
 



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