br.com.anteros.cloud.integration.filesharing.CloudFileManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Cloud-Integration Show documentation
Show all versions of Anteros-Cloud-Integration Show documentation
Anteros Cloud Integration for Java.
package br.com.anteros.cloud.integration.filesharing;
import java.util.Collection;
public interface CloudFileManager {
public CloudResultInfo uploadAndShareFile(String folderName, String fileName, byte[] fileContent, String mimeType) throws Exception;
public void removeFile(String folderName, String fileName) throws Exception;
public void createFolder(String folderName) throws Exception;
public void removeFolder(String folderName) throws Exception;
public Collection listFiles(String folderName) throws Exception;
public Collection listImages(String folderName) throws Exception;
public Collection listFolders(String folderName) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy