Package com.vmware.vim.binding.vim.vm

Examples of com.vmware.vim.binding.vim.vm.FileInfo


    */
   @Override
   public VcVirtualMachine createVm(ConfigSpec config, VcDatastore ds, Folder vmFolder)
         throws Exception {
      String vmPathName = String.format("[%s]", ds.getURLName());
      FileInfo info = new com.vmware.vim.binding.impl.vim.vm.FileInfoImpl();
      info.setVmPathName(vmPathName);
      AuAssert.check(config.getFiles() == null);
      config.setFiles(info);
      return createVm(config, vmFolder);
   }
View Full Code Here

TOP

Related Classes of com.vmware.vim.binding.vim.vm.FileInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.