Examples of CreateLunCmdResponse


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

  public void execute() throws ResourceUnavailableException,
      InsufficientCapacityException, ServerApiException,
      ConcurrentOperationException, ResourceAllocationException {
     
      try {
        CreateLunCmdResponse response = new CreateLunCmdResponse();
        String returnVals[] = null;
        returnVals = netappMgr.createLunOnFiler(getPoolName(), getLunSize());
        response.setPath(returnVals[0]);
        response.setIqn(returnVals[1]);
        response.setIpAddress(returnVals[2]);
        response.setObjectName("lun");
        response.setResponseName(getCommandName());
        this.setResponseObject(response);
      } catch (ServerException e) {
        throw new ServerApiException(ApiErrorCode.PARAM_ERROR, e.toString());
      } catch (InvalidParameterValueException e) {
        throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, e.toString());
View Full Code Here

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

    @Override
    public void execute() throws ResourceUnavailableException, InsufficientCapacityException, ServerApiException, ConcurrentOperationException,
        ResourceAllocationException {

        try {
            CreateLunCmdResponse response = new CreateLunCmdResponse();
            String returnVals[] = null;
            returnVals = netappMgr.createLunOnFiler(getPoolName(), getLunSize());
            response.setPath(returnVals[0]);
            response.setIqn(returnVals[1]);
            response.setIpAddress(returnVals[2]);
            response.setObjectName("lun");
            response.setResponseName(getCommandName());
            this.setResponseObject(response);
        } catch (ServerException e) {
            throw new ServerApiException(ApiErrorCode.PARAM_ERROR, e.toString());
        } catch (InvalidParameterValueException e) {
            throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, e.toString());
View Full Code Here

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

      ConcurrentOperationException, ResourceAllocationException {
    ComponentLocator locator = ComponentLocator.getLocator(ManagementService.Name);
      NetappManager netappMgr = locator.getManager(NetappManager.class);
     
      try {
        CreateLunCmdResponse response = new CreateLunCmdResponse();
        String returnVals[] = null;
        returnVals = netappMgr.createLunOnFiler(getPoolName(), getLunSize());
        response.setPath(returnVals[0]);
        response.setIqn(returnVals[1]);
        response.setIpAddress(returnVals[2]);
        response.setObjectName("lun");
        response.setResponseName(getCommandName());
        this.setResponseObject(response);
      } catch (ServerException e) {
        throw new ServerApiException(BaseCmd.PARAM_ERROR, e.toString());
      } catch (InvalidParameterValueException e) {
        throw new ServerApiException(BaseCmd.INTERNAL_ERROR, e.toString());
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.