Package org.eclipse.webdav.http.client

Examples of org.eclipse.webdav.http.client.HttpClient


    /**
     * Ctor for this wrapper WebDav client.
     * @param serverUrl The WebDav repository location (server)
     */
    /** package */ WebDavClient(URL serverUrl) {
        HttpClient httpClient = null;
        if (Activator.getDefault().useDebugHttpClient()) {
            httpClient = new DebugHttpClient();
        } else {
            httpClient = new HttpClient();
        }
        platformAuthenticator =  new WebDavAuthenticator(serverUrl);
        httpClient.setAuthenticator(platformAuthenticator);
        client = new RemoteDAVClient(new WebDAVFactory(), httpClient);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.webdav.http.client.HttpClient

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.