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

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

Introduction

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

Prototype

public DefaultTargetAuthenticationHandler() 

Source Link

Usage

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

@Override
protected AuthenticationHandler createTargetAuthenticationHandler() {
    return new DefaultTargetAuthenticationHandler();
}

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

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

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

protected AuthenticationHandler createTargetAuthenticationHandler() {
    return new DefaultTargetAuthenticationHandler();
}