All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wizzardo.tools.http.HttpClient Maven / Gradle / Ivy

package com.wizzardo.tools.http;

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 * @author Moxa
 */
public class HttpClient {
    private static HttpSession session;

    public static Request createRequest(String url) {
        if (session == null)
            session = new HttpSession();

        return session.createRequest(url);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy