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

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