Interface StorageService
-
public interface StorageService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleandelete(String reference)org.springframework.core.io.Resourceretrieve(String reference)Stringstore(org.springframework.web.multipart.MultipartFile file)
-
-
-
Method Detail
-
store
String store(org.springframework.web.multipart.MultipartFile file) throws IOException, org.springframework.web.HttpMediaTypeNotAcceptableException
- Throws:
IOExceptionorg.springframework.web.HttpMediaTypeNotAcceptableException
-
retrieve
org.springframework.core.io.Resource retrieve(String reference) throws IOException
- Throws:
IOException
-
delete
boolean delete(String reference) throws IOException, UnsupportedOperationException, SecurityException
-
-