use of org.ovirt.engine.core.common.queries.GetSupportedCpuListParameters in project ovirt-engine by oVirt.
the class AsyncDataProvider method getSupportedCpuList.
public void getSupportedCpuList(AsyncQuery<List<ServerCpu>> aQuery, String cpuName) {
aQuery.converterCallback = new CastingConverter<>();
Frontend.getInstance().runQuery(QueryType.GetSupportedCpuList, new GetSupportedCpuListParameters(cpuName), aQuery);
}
Aggregations