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

com.itxiaoer.commons.upload.rule.FileIdRule Maven / Gradle / Ivy

There is a newer version: 2.3.4
Show newest version
package com.itxiaoer.commons.upload.rule;

import org.springframework.web.multipart.MultipartFile;

/**
 * @author : liuyk
 */

public class FileIdRule implements IdRule {

    @Override
    public String id(MultipartFile file) {
        return file.getOriginalFilename();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy