use of com.emc.sa.service.vipr.block.tasks.GetUnmanagedVolumesForStorageSystem in project coprhd-controller by CoprHD.
the class DiscoverUnmanagedVolumesService method countUnmanagedVolumes.
private int countUnmanagedVolumes(String storageSystem) {
int total = 0;
List<RelatedResourceRep> unmanaged = execute(new GetUnmanagedVolumesForStorageSystem(storageSystem));
if (unmanaged != null) {
total = unmanaged.size();
}
return total;
}
Aggregations