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
static Map AuthChallengeParser.extractParams(String challengeStr)
          Extracts a map of challenge parameters from an authentication challenge.
static String AuthChallengeParser.extractScheme(String challengeStr)
          Extracts authentication scheme from the given authentication challenge.
static Map AuthChallengeParser.parseChallenges(Header[] headers)
          Extracts a map of challenges ordered by authentication scheme name
 AuthScheme AuthChallengeProcessor.processChallenge(AuthState state, Map challenges)
          Processes the given collection of challenges and updates the state of the authentication process.
 void BasicScheme.processChallenge(String challenge)
          Processes the Basic challenge.
 void RFC2617Scheme.processChallenge(String challenge)
          Processes the given challenge token.
 void DigestScheme.processChallenge(String challenge)
          Processes the Digest challenge.
 void AuthScheme.processChallenge(String challenge)
          Processes the given challenge token.
 void NTLMScheme.processChallenge(String challenge)
          Processes the NTLM challenge.
static AuthScheme HttpAuthenticator.selectAuthScheme(Header[] challenges)
          Deprecated. Use AuthChallengeParser.parseChallenges(Header[]) and AuthPolicy.getAuthScheme(String)
 

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



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