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

br.com.anteros.cloud.integration.filesharing.CloudFileManager Maven / Gradle / Ivy

There is a newer version: 1.0.12
Show newest version
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