Example usage for org.apache.http.client AuthenticationHandler interface-usage

List of usage examples for org.apache.http.client AuthenticationHandler interface-usage

Introduction

In this page you can find the example usage for org.apache.http.client AuthenticationHandler interface-usage.

Usage

From source file org.apache.droids.protocol.http.NoAuthHandler.java

class NoAuthHandler implements AuthenticationHandler {

    @Override
    public Map<String, Header> getChallenges(HttpResponse response, HttpContext context)
            throws MalformedChallengeException {
        return Collections.emptyMap();

From source file org.apache.http.impl.client.AbstractAuthenticationHandler.java

/**
 * Base class for {@link AuthenticationHandler} implementations.
 *
 * @since 4.0
 *
 * @deprecated (4.2)  use {@link org.apache.http.client.AuthenticationStrategy}