> + * Date: 18/05/2014 5:31 PM
> + * Package: org.jclouds.vsphere
> + */
> +public interface IFileManager {
> +
> + void uploadFile(String srcFilePath, String destDirectory) throws
> IOException;
> +
> + void changeOwner(java.lang.String name, Datacenter datacenter,
> java.lang.String owner) throws InvalidDatastore, FileFault, UserNotFound,
> RuntimeFault, RemoteException;
> +
> + Task copyDatastoreFile_Task(String sourceName, Datacenter
> sourceDatacenter, String destinationName, Datacenter destinationDatacenter,
> boolean force) throws FileFault, InvalidDatastore, RuntimeFault,
> RemoteException;
> +
> + Task deleteDatastoreFile_Task(String name, Datacenter datacenter) throws
> FileFault, InvalidDatastore, RuntimeFault, RemoteException;
> +
> + void makeDirectory(String name, Datacenter datacenter, boolean
> createParentDirectories) throws FileFault, InvalidDatastore, RuntimeFault,
> java.rmi.RemoteException;
> +
> + Task moveDatastoreFile_Task(String sourceName, Datacenter
> sourceDatacenter, String destinationName, Datacenter destinationDatacenter,
> boolean force) throws FileFault, InvalidDatastore, RuntimeFault,
> RemoteException;
Please remove underscores from interface methods and add some Javadoc.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/61/files#r14219032