Package com.emc.storageos.model.file

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


     * @param id
     *        the ID of the file system.
     * @return the list of exports for the file system.
     */
    public List<FileSystemExportParam> getExports(URI id) {
        FileSystemExportList response = client.get(FileSystemExportList.class, getExportsUrl(), id);
        return defaultList(response.getExportList());
    }
View Full Code Here


     * @param id
     *        the ID of the file snapshot.
     * @return the list of exports for the snapshot.
     */
    public List<FileSystemExportParam> getExports(URI id) {
        FileSystemExportList response = client.get(FileSystemExportList.class, getExportsUrl(), id);
        return defaultList(response.getExportList());
    }
View Full Code Here

     * @param id
     *        the ID of the file system.
     * @return the list of exports for the file system.
     */
    public List<FileSystemExportParam> getExports(URI id) {
        FileSystemExportList response = client.get(FileSystemExportList.class, getExportsUrl(), id);
        return defaultList(response.getExportList());
    }
View Full Code Here

     * @param id
     *        the ID of the file snapshot.
     * @return the list of exports for the snapshot.
     */
    public List<FileSystemExportParam> getExports(URI id) {
        FileSystemExportList response = client.get(FileSystemExportList.class, getExportsUrl(), id);
        return defaultList(response.getExportList());
    }
View Full Code Here

TOP

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

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.