top.jfunc.http.request.DownloadRequest Maven / Gradle / Ivy
package top.jfunc.http.request;
import java.io.File;
/**
* 文件下载请求
* @author xiongshiyan
*/
public interface DownloadRequest extends HttpRequest {
/**
* 下载到的文件
* @return file
*/
File getFile();
/**
* 设置下载到哪个文件
* @param file file
* @return this
*/
DownloadRequest setFile(File file);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy