Example usage for org.apache.http.impl.client DefaultProxyAuthenticationHandler DefaultProxyAuthenticationHandler

List of usage examples for org.apache.http.impl.client DefaultProxyAuthenticationHandler DefaultProxyAuthenticationHandler

Introduction

In this page you can find the example usage for org.apache.http.impl.client DefaultProxyAuthenticationHandler DefaultProxyAuthenticationHandler.

Prototype

public DefaultProxyAuthenticationHandler() 

Source Link

Usage

From source file:org.vietspider.net.client.impl.AnonymousHttpClient.java

@Override
protected AuthenticationHandler createProxyAuthenticationHandler() {
    return new DefaultProxyAuthenticationHandler();
}

From source file:org.apache.http.impl.client.AbstractHttpClient.java

/**
 * @deprecated (4.2) do not use//from   ww w  .j  a v a  2s . c  o m
 */
@Deprecated
protected AuthenticationHandler createProxyAuthenticationHandler() {
    return new DefaultProxyAuthenticationHandler();
}

From source file:org.apache.http.impl.client.AbstractStatisticsGatheringHttpClient.java

protected AuthenticationHandler createProxyAuthenticationHandler() {
    return new DefaultProxyAuthenticationHandler();
}