Package com.emc.storageos.model.vpool

Examples of com.emc.storageos.model.vpool.VirtualPoolChangeList


     * @param id
     *        the ID of the block volume.
     * @return the list of virtual pool candidates.
     */
    public List<VirtualPoolChangeRep> listVirtualPoolChangeCandidates(URI id) {
        VirtualPoolChangeList response = client
                .get(VirtualPoolChangeList.class, getIdUrl() + "/vpool-change/vpool", id);
        return defaultList(response.getVirtualPools());
    }
View Full Code Here


     * @param id
     *        the ID of the block volume.
     * @return the list of virtual pool candidates.
     */
    public List<VirtualPoolChangeRep> listVirtualPoolChangeCandidates(URI id) {
        VirtualPoolChangeList response = client
                .get(VirtualPoolChangeList.class, getIdUrl() + "/vpool-change/vpool", id);
        return defaultList(response.getVirtualPools());
    }
View Full Code Here

     * @param id
     *        the ID of the block volume.
     * @return the list of virtual pool candidates.
     */
    public List<VirtualPoolChangeRep> listVirtualPoolChangeCandidates(URI id) {
        VirtualPoolChangeList response = client
                .get(VirtualPoolChangeList.class, getIdUrl() + "/vpool-change/vpool", id);
        return defaultList(response.getVirtualPools());
    }
View Full Code Here

     * @param id
     *        the ID of the block virtual pool.
     * @return the list of virtual pool candidates.
     */
    public List<VirtualPoolChangeRep> listVirtualPoolChangeCandidates(URI id, BulkIdParam input) {
        VirtualPoolChangeList response = client.post(VirtualPoolChangeList.class, input, getIdUrl() + "/vpool-change/vpool", id);
        return defaultList(response.getVirtualPools());
    }
View Full Code Here

TOP

Related Classes of com.emc.storageos.model.vpool.VirtualPoolChangeList

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.