Package com.abiquo.server.core.infrastructure.storage

Examples of com.abiquo.server.core.infrastructure.storage.StorageDevicesMetadataDto


    * @return List of supported storage devices. This list has only the default
    *         information for the storage devices, such as the management and
    *         iscsi ports, or the default credentials to access the device.
    */
   public Iterable<StorageDeviceMetadata> listSupportedStorageDevices() {
      StorageDevicesMetadataDto devices = context.getApi().getInfrastructureApi().listSupportedStorageDevices(target);
      return wrap(context, StorageDeviceMetadata.class, devices.getCollection());
   }
View Full Code Here


    * @return List of supported storage devices. This list has only the default
    *         information for the storage devices, such as the management and
    *         iscsi ports, or the default credentials to access the device.
    */
   public Iterable<StorageDeviceMetadata> listSupportedStorageDevices() {
      StorageDevicesMetadataDto devices = context.getApi().getInfrastructureApi().listSupportedStorageDevices(target);
      return wrap(context, StorageDeviceMetadata.class, devices.getCollection());
   }
View Full Code Here

    * @return List of supported storage devices. This list has only the default
    *         information for the storage devices, such as the management and
    *         iscsi ports, or the default credentials to access the device.
    */
   public List<StorageDeviceMetadata> listSupportedStorageDevices() {
      StorageDevicesMetadataDto devices = context.getApi().getInfrastructureApi().listSupportedStorageDevices(target);
      return wrap(context, StorageDeviceMetadata.class, devices.getCollection());
   }
View Full Code Here

TOP

Related Classes of com.abiquo.server.core.infrastructure.storage.StorageDevicesMetadataDto

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.