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

prerna.cluster.util.clients.ICloudClientBuilder Maven / Gradle / Ivy

The newest version!
package prerna.cluster.util.clients;

public interface ICloudClientBuilder {

	/**
	 * Build the client
	 * @return
	 */
	ICloudClient buildClient();
	
	/**
	 * 
	 * @return
	 */
	ICloudClientBuilder pullValuesFromSystem();
	
	/**
	 * 
	 * @param rclonePath
	 * @return
	 */
	ICloudClientBuilder setRClonePath(String rclonePath);

	/**
	 * 
	 * @param rcloneConfigF
	 * @return
	 */
	ICloudClientBuilder setRCloneConfigFolder(String rcloneConfigF);

	/**
	 * 
	 * @return
	 */
	String getRClonePath();
	
	/**
	 * 
	 * @return
	 */
	String getRCloneConfigFolder();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy