Package org.jclouds.softlayer.domain.internal

Examples of org.jclouds.softlayer.domain.internal.BlockDevice


      if (virtualGuest.getVirtualGuestBlockDevices() == null) {
         return null;
      }
      List<BlockDevice> blockDevices = Lists.newArrayList();
      for (VirtualGuestBlockDevice blockDevice : virtualGuest.getVirtualGuestBlockDevices()) {
         blockDevices.add(new BlockDevice(blockDevice.getDevice(), blockDevice.getVirtualDiskImage().getCapacity()));
      }
      Collections.sort(blockDevices, new BlockDevicesComparator());
      return ImmutableList.copyOf(blockDevices);
   }
View Full Code Here

TOP

Related Classes of org.jclouds.softlayer.domain.internal.BlockDevice

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.