Examples of SnapshotList


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

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

Examples of com.emc.storageos.model.SnapshotList

     * @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

Examples of com.emc.storageos.model.SnapshotList

     * @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
Copyright © 2018 www.massapi.com. 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.