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
           Abstract authentication scheme class that implements AuthScheme interface and provides a default contstructor.
 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
static AuthScheme HttpAuthenticator.selectAuthScheme(Header[] challenges)
          Chooses the strongest authentication scheme supported from the array of authentication 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)
          Attempt to provide requisite authentication credentials to the given method in the given context using the given authentication scheme.
static boolean HttpAuthenticator.authenticateProxy(AuthScheme authscheme, HttpMethod method, HttpConnection conn, HttpState state)
          Attempt to provide requisite proxy authentication credentials to the given method in the given context using the given authentication scheme.
 



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