FileDao.java 333 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
package at.ac.tuwien.sepm.assignment.individual.persistence;

import org.springframework.web.multipart.MultipartFile;

import java.io.IOException;

public interface FileDao {
    /**
     * Used for saving files on the local file system
     * @param file file to save
     */
    void save(MultipartFile file) throws IOException;
}