use of com.emc.sa.service.linux.tasks.FindPowerPathEntryForVolume in project coprhd-controller by CoprHD.
the class LinuxSupport method findPowerPathDevices.
public void findPowerPathDevices(List<VolumeSpec> volumes) {
for (VolumeSpec volume : volumes) {
PowerPathDevice device = execute(new FindPowerPathEntryForVolume(volume.viprVolume));
volume.powerpathDevices = Lists.newArrayList(device);
}
}
Aggregations