> +import com.vmware.vim25.UserNotFound;
> +import com.vmware.vim25.mo.Datacenter;
> +import com.vmware.vim25.mo.Task;
> +
> +import java.io.IOException;
> +import java.rmi.RemoteException;
> +
> +/**
> + * 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;
Use `String` instead of `java.lang.String`.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/61/files#r14219014