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

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

package top.jfunc.http.holderrequest;

import java.net.URL;

/**
 * 通用的代表没有更多参数的请求
 * @author xiongshiyan at 2019/5/18 , contact me with email [email protected] or phone 15208384257
 */
public class DefaultRequest extends BaseHttpRequest {
    public DefaultRequest(String url){
        super(url);
    }
    public DefaultRequest(URL url){
        super(url);
    }
    public DefaultRequest(){
    }

    public static HttpRequest of(){
        return new DefaultRequest();
    }
    public static HttpRequest of(URL url){
        return new DefaultRequest(url);
    }
    public static HttpRequest of(String url){
        return new DefaultRequest(url);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy