Java 类com.vmware.vim25.ProfileMetadata 实例源码

项目:vijava    文件:HostProfileManager.java   
public ProfileMetadata[] queryHostProfileMetadata(String[] profileName) throws RuntimeFault, RemoteException
{
    return getVimService().queryHostProfileMetadata(getMOR(), profileName, null);
}
项目:vijava    文件:HostProfileManager.java   
public ProfileMetadata[] queryHostProfileMetadata(String[] profileNames, Profile profile) throws RuntimeFault, RemoteException
{
  return getVimService().queryHostProfileMetadata(getMOR(), profileNames, 
      profile==null? null : profile.getMOR());
}
项目:jcloud-vsphere    文件:HostProfileManagerApi.java   
/**
 * SDK4.1 signature for back compatibility
 */
List<ProfileMetadata> queryHostProfileMetadata(List<String> profileName) throws RuntimeFault, RemoteException;
项目:jcloud-vsphere    文件:HostProfileManagerApi.java   
/**
 * SDK5.0 signature
 */
List<ProfileMetadata> queryHostProfileMetadata(List<String> profileNames, Profile profile) throws RuntimeFault, RemoteException;