use of org.ovirt.engine.core.common.queries.GetLunsByVgIdParameters in project ovirt-engine by oVirt.
the class AsyncDataProvider method getLunsByVgId.
public void getLunsByVgId(AsyncQuery<List<LUNs>> aQuery, String vgId, Guid vdsId) {
aQuery.converterCallback = new ListConverter<>();
GetLunsByVgIdParameters params = new GetLunsByVgIdParameters(vgId, vdsId);
Frontend.getInstance().runQuery(QueryType.GetLunsByVgId, params, aQuery);
}
Aggregations