Package com.emc.storageos.model

Examples of com.emc.storageos.model.SnapshotList


     * @param args
     *        the arguments for the path.
     * @return the list of snapshot references.
     */
    protected List<NamedRelatedResourceRep> getList(String path, Object... args) {
        SnapshotList response = client.get(SnapshotList.class, path, args);
        return defaultList(response.getSnapList());
    }
View Full Code Here


     * @param args
     *        the arguments for the path.
     * @return the list of snapshot references.
     */
    protected List<NamedRelatedResourceRep> getList(String path, Object... args) {
        SnapshotList response = client.get(SnapshotList.class, path, args);
        return defaultList(response.getSnapList());
    }
View Full Code Here

     * @param fileSystemId
     *        the ID of the file system.
     * @return the list of file snapshot references for the file system.
     */
    public List<NamedRelatedResourceRep> listByFileSystem(URI fileSystemId) {
        SnapshotList response = client.get(SnapshotList.class, getByFileSystemUrl(), fileSystemId);
        return defaultList(response.getSnapList());
    }
View Full Code Here

     * @param fileSystemId
     *        the ID of the file system.
     * @return the list of file snapshot references for the file system.
     */
    public List<NamedRelatedResourceRep> listByFileSystem(URI fileSystemId) {
        SnapshotList response = client.get(SnapshotList.class, getByFileSystemUrl(), fileSystemId);
        return defaultList(response.getSnapList());
    }
View Full Code Here

TOP

Related Classes of com.emc.storageos.model.SnapshotList

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.