Package com.cloud.agent.api

Examples of com.cloud.agent.api.DeleteStoragePoolCommand


        ModifyStoragePoolCommand cmd = new ModifyStoragePoolCommand(
                true, pool, folderName);
        Answer ans = s_hypervresource.executeRequest(cmd);
        Assert.assertTrue(ans.getResult());

        DeleteStoragePoolCommand delCmd =
                new DeleteStoragePoolCommand(pool, folderName);
        Answer ans2 = s_hypervresource.executeRequest(delCmd);
        Assert.assertTrue(ans2.getResult());
    }
View Full Code Here

TOP

Related Classes of com.cloud.agent.api.DeleteStoragePoolCommand

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.