Package com.emc.storageos.model.file

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


     * @param id
     *        the ID of the file system.
     * @return the list of shares for the given file system.
     */
    public List<SmbShareResponse> getShares(URI id) {
        FileSystemShareList response = client.get(FileSystemShareList.class, getSharesUrl(), id);
        return defaultList(response.getShareList());
    }
View Full Code Here


     * @param id
     *        the ID of the file snapshot.
     * @return the list of shares for the file snapshot.
     */
    public List<SmbShareResponse> getShares(URI id) {
        FileSystemShareList response = client.get(FileSystemShareList.class, getSharesUrl(), id);
        return defaultList(response.getShareList());
    }
View Full Code Here

     * @param id
     *        the ID of the file system.
     * @return the list of shares for the given file system.
     */
    public List<SmbShareResponse> getShares(URI id) {
        FileSystemShareList response = client.get(FileSystemShareList.class, getSharesUrl(), id);
        return defaultList(response.getShareList());
    }
View Full Code Here

     * @param id
     *        the ID of the file snapshot.
     * @return the list of shares for the file snapshot.
     */
    public List<SmbShareResponse> getShares(URI id) {
        FileSystemShareList response = client.get(FileSystemShareList.class, getSharesUrl(), id);
        return defaultList(response.getShareList());
    }
View Full Code Here

TOP

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

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.