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

com.gitee.easyopen.ApiUploadContext Maven / Gradle / Ivy

package com.gitee.easyopen;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;

import org.springframework.web.multipart.MultipartFile;

/**
 * 存放上传文件
 * 
 * @author tanghc
 */
public class ApiUploadContext implements UploadContext {

    private Map fileMap;
    private List allFile;

    public ApiUploadContext(Map map) {
        if (map == null) {
            map = Collections.emptyMap();
        }
        this.fileMap = map;
        this.allFile = new ArrayList<>(map.values());
    }

    @Override
    public MultipartFile getFile(int index) {
        return this.allFile.get(index);
    }

    @Override
    public MultipartFile getFile(String name) {
        return fileMap.get(name);
    }

    @Override
    public List getAllFile() {
        return this.allFile;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy