Package com.emc.storageos.model.file

Examples of com.emc.storageos.model.file.UnManagedFileSystemList


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


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

TOP

Related Classes of com.emc.storageos.model.file.UnManagedFileSystemList

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.