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

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

Methods in org.apache.commons.httpclient.auth that throw MalformedChallengeException
 void RFC2617Scheme.processChallenge(String challenge)
          Processes the given challenge token.
 void BasicScheme.processChallenge(String challenge)
          Processes the Basic challenge.
 void NTLMScheme.processChallenge(String challenge)
          Processes the NTLM challenge.
 void AuthScheme.processChallenge(String challenge)
          Processes the given challenge token.
 void DigestScheme.processChallenge(String challenge)
          Processes the Digest challenge.
 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)
static String AuthChallengeParser.extractScheme(String challengeStr)
          Extracts authentication scheme from the given authentication challenge.
static Map AuthChallengeParser.extractParams(String challengeStr)
          Extracts a map of challenge parameters from an authentication challenge.
static Map AuthChallengeParser.parseChallenges(Header[] headers)
          Extracts a map of challenges ordered by authentication scheme name
 

Constructors in org.apache.commons.httpclient.auth that throw MalformedChallengeException
RFC2617Scheme(String challenge)
          Deprecated. Use parameterless constructor and AuthScheme.processChallenge(String) method
BasicScheme(String challenge)
          Deprecated. Use parameterless constructor and AuthScheme.processChallenge(String) method
NTLMScheme(String challenge)
          Constructor for the NTLM authentication scheme.
DigestScheme(String challenge)
          Deprecated. Use parameterless constructor and AuthScheme.processChallenge(String) method
AuthSchemeBase(String challenge)
          Deprecated. Use parameterless constructor and AuthScheme.processChallenge(String) method
 



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