top.jfunc.http.interfacing.RequestFactory Maven / Gradle / Ivy
package top.jfunc.http.interfacing;
import top.jfunc.http.base.Method;
import top.jfunc.http.request.HttpRequest;
/**
* @author xiongshiyan at 2019/5/24 , contact me with email [email protected] or phone 15208384257
*/
interface RequestFactory {
/**
* 生成HttpRequest请求
* @param args 参数
* @return Implementation of HttpRequest
*/
HttpRequest httpRequest(Object[] args);
/**
* 请求方法
*/
Method getHttpMethod();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy