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

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

Introduction

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

Prototype

public BasicCredentialsProviderHC4() 

Source Link

Document

Default constructor.

Usage

From source file:com.granita.icloudcalsync.webdav.WebDavResource.java

public WebDavResource(CloseableHttpClient httpClient, URI baseURI) {
    this.httpClient = httpClient;
    location = baseURI;/*  ww  w  . j  av  a 2 s.co m*/

    context = HttpClientContext.create();
    context.setCredentialsProvider(new BasicCredentialsProviderHC4());
}