use of org.ovirt.engine.core.common.queries.ValidateVmMacsParameters in project ovirt-engine by oVirt.
the class AsyncDataProvider method validateVmMacs.
public void validateVmMacs(AsyncQuery<Map<Guid, List<List<String>>>> asyncQuery, Map<Guid, List<VM>> vmsByCluster) {
asyncQuery.converterCallback = new CastingConverter<>();
Frontend.getInstance().runQuery(QueryType.ValidateVmMacs, new ValidateVmMacsParameters(vmsByCluster), asyncQuery);
}
Aggregations