use of org.ovirt.engine.core.vdsbroker.vdsbroker.DevicesVisibilityMapReturn in project ovirt-engine by oVirt.
the class JsonRpcVdsServer method getDevicesVisibility.
@Override
public DevicesVisibilityMapReturn getDevicesVisibility(String[] devicesList) {
JsonRpcRequest request = new RequestBuilder("Host.getDevicesVisibility").withParameter("guidList", new ArrayList<>(Arrays.asList(devicesList))).build();
Map<String, Object> response = new FutureMap(this.client, request).withResponseKey("visible");
return new DevicesVisibilityMapReturn(response);
}
Aggregations