use of org.ovirt.engine.core.common.businessentities.IVdsAsyncCommand in project ovirt-engine by oVirt.
the class VDSBrokerFrontendImpl method getAsyncCommandForVm.
@Override
public IVdsAsyncCommand getAsyncCommandForVm(Guid vmId) {
IVdsAsyncCommand result = null;
result = _asyncRunningCommands.get(vmId);
return result;
}
Aggregations