Package com.couchace.core.spi.http

Examples of com.couchace.core.spi.http.SslSetup


    public CouchSetup(String url) {
        this.url = url;
    }

    public CouchSetup ssl(String keyStoreUrl, String storePass) {
        sslSetup = new SslSetup(keyStoreUrl, storePass);
        return this;
    }
View Full Code Here


    public CouchSetup(String url) {
        this.url = url;
    }

    public CouchSetup ssl(String keyStoreUrl, String storePass) {
        sslSetup = new SslSetup(keyStoreUrl, storePass);
        return this;
    }
View Full Code Here

TOP

Related Classes of com.couchace.core.spi.http.SslSetup

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.