Package com.atlassian.httpclient.api.factory

Examples of com.atlassian.httpclient.api.factory.HttpClientOptions


*/
public class AsynchronousHttpClientFactory {

  @SuppressWarnings("unchecked")
  public DisposableHttpClient createClient(final URI serverUri, final AuthenticationHandler authenticationHandler) {
    final HttpClientOptions options = new HttpClientOptions();
    options.setRequestPreparer(new Effect<Request>() {
      @Override
      public void apply(final Request request) {
        authenticationHandler.configure(request);
      }
    });
View Full Code Here


*/
public class AsynchronousHttpClientFactory {

  @SuppressWarnings("unchecked")
  public DisposableHttpClient createClient(final URI serverUri, final AuthenticationHandler authenticationHandler) {
    final HttpClientOptions options = new HttpClientOptions();
    options.setRequestPreparer(new Effect<Request>() {
      @Override
      public void apply(final Request request) {
        authenticationHandler.configure(request);
      }
    });
View Full Code Here

TOP

Related Classes of com.atlassian.httpclient.api.factory.HttpClientOptions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.