Example usage for org.apache.commons.httpclient.auth BasicScheme subclass-usage

List of usage examples for org.apache.commons.httpclient.auth BasicScheme subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.httpclient.auth BasicScheme subclass-usage.

Usage

From source file davmail.http.LenientBasicScheme.java

/**
 * Workaround for broken servers that send invalid Basic authentication challenge.
 */
public class LenientBasicScheme extends BasicScheme {
    public void processChallenge(String challenge) throws MalformedChallengeException {
        if ("Basic".equalsIgnoreCase(challenge)) {

From source file org.sonatype.nexus.restlight.common.NxBasicScheme.java

/**
 * {@link AuthScheme} for use with commons-httpclient that implements Nexus' NxBASIC
 * HTTP authentication scheme. This is just an extension of {@link BasicScheme} that uses the name
 * 'NxBASIC' for registration with httpclient.
 */
public class NxBasicScheme extends BasicScheme {