Example usage for org.apache.http.protocol RequestTargetHost RequestTargetHost

List of usage examples for org.apache.http.protocol RequestTargetHost RequestTargetHost

Introduction

In this page you can find the example usage for org.apache.http.protocol RequestTargetHost RequestTargetHost.

Prototype

RequestTargetHost

Source Link

Usage

From source file:org.apache.http.impl.execchain.MinimalClientExec.java

public MinimalClientExec(final HttpRequestExecutor requestExecutor,
        final HttpClientConnectionManager connManager, final ConnectionReuseStrategy reuseStrategy,
        final ConnectionKeepAliveStrategy keepAliveStrategy) {
    Args.notNull(requestExecutor, "HTTP request executor");
    Args.notNull(connManager, "Client connection manager");
    Args.notNull(reuseStrategy, "Connection reuse strategy");
    Args.notNull(keepAliveStrategy, "Connection keep alive strategy");
    this.httpProcessor = new ImmutableHttpProcessor(new RequestContent(), new RequestTargetHost(),
            new RequestClientConnControl(), new RequestUserAgent(
                    VersionInfo.getUserAgent("Apache-HttpClient", "org.apache.http.client", getClass())));
    this.requestExecutor = requestExecutor;
    this.connManager = connManager;
    this.reuseStrategy = reuseStrategy;
    this.keepAliveStrategy = keepAliveStrategy;
}

From source file:org.apache.http.impl.nio.client.MainClientExec.java

public MainClientExec(final HttpProcessor httpProcessor, final HttpRoutePlanner routePlanner,
        final RedirectStrategy redirectStrategy, final AuthenticationStrategy targetAuthStrategy,
        final AuthenticationStrategy proxyAuthStrategy, final UserTokenHandler userTokenHandler) {
    super();//from  w  ww . ja  v a 2s  . com
    this.httpProcessor = httpProcessor;
    this.proxyHttpProcessor = new ImmutableHttpProcessor(new RequestTargetHost(),
            new RequestClientConnControl());
    this.routePlanner = routePlanner;
    this.redirectStrategy = redirectStrategy;
    this.targetAuthStrategy = targetAuthStrategy;
    this.proxyAuthStrategy = proxyAuthStrategy;
    this.userTokenHandler = userTokenHandler;
    this.routeDirector = new BasicRouteDirector();
    this.authenticator = new HttpAuthenticator(log);
}