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

top.jfunc.http.request.DefaultRequest Maven / Gradle / Ivy

package top.jfunc.http.request;

/**
 * @author xiongshiyan at 2019/7/5 , contact me with email [email protected] or phone 15208384257
 */
public class DefaultRequest extends BaseHttpRequest {
    public DefaultRequest(String url){
        super(url);
    }
    public DefaultRequest(){
    }
    public static HttpRequest of(String url){
        return new DefaultRequest(url);
    }
    public static HttpRequest of(){
        return new DefaultRequest();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy