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

com.processpuzzle.fitnesse.connect.testbed.file.StorageService Maven / Gradle / Ivy

There is a newer version: 1.1.13
Show newest version
package com.processpuzzle.fitnesse.connect.testbed.file;

import org.springframework.core.io.Resource;
import org.springframework.web.multipart.MultipartFile;

import java.nio.file.Path;
import java.util.stream.Stream;

public interface StorageService {

   void deleteAll();
   
   void init();

   Path load( String filename );

   Stream loadAll();

   Resource loadAsResource( String filename );

   void store( MultipartFile file );
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy