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

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