Package com.cloud.server.api.response.netapp

Examples of com.cloud.server.api.response.netapp.ModifyVolumePoolCmdResponse


    public void execute() throws ResourceUnavailableException,
    InsufficientCapacityException, ServerApiException,
    ConcurrentOperationException, ResourceAllocationException {
      netappMgr.modifyPool(poolName, algorithm);

      ModifyVolumePoolCmdResponse response = new ModifyVolumePoolCmdResponse();
      response.setResponseName(getCommandName());
      this.setResponseObject(response);
    }
View Full Code Here


    @Override
    public void execute() throws ResourceUnavailableException, InsufficientCapacityException, ServerApiException, ConcurrentOperationException,
        ResourceAllocationException {
        netappMgr.modifyPool(poolName, algorithm);

        ModifyVolumePoolCmdResponse response = new ModifyVolumePoolCmdResponse();
        response.setResponseName(getCommandName());
        this.setResponseObject(response);
    }
View Full Code Here

      ComponentLocator locator = ComponentLocator.getLocator(ManagementService.Name);
      NetappManager netappMgr = locator.getManager(NetappManager.class);

      netappMgr.modifyPool(poolName, algorithm);

      ModifyVolumePoolCmdResponse response = new ModifyVolumePoolCmdResponse();
      response.setResponseName(getCommandName());
      this.setResponseObject(response);
    }
View Full Code Here

TOP

Related Classes of com.cloud.server.api.response.netapp.ModifyVolumePoolCmdResponse

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.