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

com.fivefaces.cloud.file_storage.FileService Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.fivefaces.cloud.file_storage;

public interface FileService {

    String saveFile(final String destination, final String filename, byte[] data);

    String getFileUrl(final String destination, final String fileKey);

    void delete(final String destination, final String fileKey);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy