Package certmngrscraper.sourceforge.net.util

Examples of certmngrscraper.sourceforge.net.util.HttpUtil


     * Creates a new {@link Scraper}.
     */
    public Scraper() {
        final Config config = Config.getInstance();
        if (config.getProxyHost() != null && config.getProxyPort() != null) {
            httpUtil = new HttpUtil(config.getProxyHost(), config.getProxyPort());
        } else if (config.getProxyHost() != null) {
            httpUtil = new HttpUtil(config.getProxyHost());
        } else {
            httpUtil = new HttpUtil();
        }
    }
View Full Code Here

TOP

Related Classes of certmngrscraper.sourceforge.net.util.HttpUtil

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.