Package com.emc.storageos.model.block

Examples of com.emc.storageos.model.block.UnManagedVolumeList


     * @param storageSystemId
     *        the ID of the storage system.
     * @return the list of unmanaged volume references.
     */
    public List<RelatedResourceRep> listByStorageSystem(URI storageSystemId) {
        UnManagedVolumeList response = client.get(UnManagedVolumeList.class,
                PathConstants.UNMANAGED_VOLUME_BY_STORAGE_SYSTEM_URL, storageSystemId);
        return ResourceUtils.defaultList(response.getUnManagedVolumes());
    }
View Full Code Here


     * @param storageSystemId
     *        the ID of the storage system.
     * @return the list of unmanaged volume references.
     */
    public List<RelatedResourceRep> listByStorageSystem(URI storageSystemId) {
        UnManagedVolumeList response = client.get(UnManagedVolumeList.class,
                PathConstants.UNMANAGED_VOLUME_BY_STORAGE_SYSTEM_URL, storageSystemId);
        return ResourceUtils.defaultList(response.getUnManagedVolumes());
    }
View Full Code Here

TOP

Related Classes of com.emc.storageos.model.block.UnManagedVolumeList

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.