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

top.jfunc.http.holder.DefaultFileHolder Maven / Gradle / Ivy

package top.jfunc.http.holder;

import java.io.File;

/**
 * 默认的 FileHolder 实现
 * @author xiongshiyan
 */
public class DefaultFileHolder implements FileHolder {
    /**
     * 为文件下载确定信息
     */
    private File file = null;

    @Override
    public File getFile() {
        return file;
    }

    @Override
    public FileHolder setFile(File file) {
        this.file = file;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy