| /** |
| * Copyright (C) 2011 Citrix Systems, Inc. All rights reserved. |
| * |
| * This software is licensed under the GNU General Public License v3 or later. |
| * |
| * It is free software: you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License as published by |
| * the Free Software Foundation, either version 3 of the License, or any later version. |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License |
| * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| * |
| */ |
| |
| package com.cloud.api.commands; |
| |
| import org.apache.log4j.Logger; |
| import com.cloud.api.ApiConstants; |
| import com.cloud.api.BaseListCmd; |
| import com.cloud.api.IdentityMapper; |
| import com.cloud.api.Implementation; |
| import com.cloud.api.Parameter; |
| import com.cloud.api.PlugService; |
| import com.cloud.api.ServerApiException; |
| import com.cloud.api.response.CiscoNexusVSMResponse; |
| import com.cloud.api.response.ListResponse; |
| import com.cloud.exception.ConcurrentOperationException; |
| import com.cloud.exception.InsufficientCapacityException; |
| import com.cloud.exception.ResourceAllocationException; |
| import com.cloud.exception.ResourceUnavailableException; |
| import com.cloud.network.CiscoNexusVSMDevice; |
| import com.cloud.network.element.CiscoNexusVSMElementService; |
| import com.cloud.user.Account; |
| |
| import java.util.ArrayList; |
| import java.util.List; |
| |
| @Implementation(responseObject=CiscoNexusVSMResponse.class, description="Retrieves a Cisco Nexus 1000v Virtual Switch Manager device associated with a Cluster") |
| public class ListCiscoNexusVSMsCmd extends BaseListCmd { |
| |
| /** |
| * This command returns a list of all the VSMs configured in the management server. |
| * If a clusterId is specified, it will return a list containing only that VSM |
| * that is associated with that cluster. If a zone is specified, it will pull |
| * up all the clusters of type vmware in that zone, and prepare a list of VSMs |
| * associated with those clusters. |
| */ |
| public static final Logger s_logger = Logger.getLogger(ListCiscoNexusVSMsCmd.class.getName()); |
| private static final String s_name = "listcisconexusvsmscmdresponse"; |
| @PlugService CiscoNexusVSMElementService _ciscoNexusVSMService; |
| |
| ///////////////////////////////////////////////////// |
| //////////////// API parameters ///////////////////// |
| ///////////////////////////////////////////////////// |
| |
| @IdentityMapper(entityTableName="cluster") |
| @Parameter(name=ApiConstants.CLUSTER_ID, type=CommandType.LONG, required = false, description="Id of the CloudStack cluster in which the Cisco Nexus 1000v VSM appliance.") |
| private long clusterId; |
| |
| @IdentityMapper(entityTableName="data_center") |
| @Parameter(name=ApiConstants.ZONE_ID, type=CommandType.LONG, required = false, description="Id of the CloudStack cluster in which the Cisco Nexus 1000v VSM appliance.") |
| private long zoneId; |
| |
| ///////////////////////////////////////////////////// |
| /////////////////// Accessors /////////////////////// |
| ///////////////////////////////////////////////////// |
| |
| public long getClusterId() { |
| return clusterId; |
| } |
| |
| public long getZoneId() { |
| return zoneId; |
| } |
| |
| ///////////////////////////////////////////////////// |
| /////////////// API Implementation/////////////////// |
| ///////////////////////////////////////////////////// |
| |
| // NOTE- The uuid that is sent in during the invocation of the API AddCiscoNexusVSM() |
| // automagically gets translated to the corresponding db id before this execute() method |
| // is invoked. That's the reason why we don't have any uuid-dbid translation code here. |
| @Override |
| public void execute() throws ResourceUnavailableException, InsufficientCapacityException, ServerApiException, ConcurrentOperationException, ResourceAllocationException { |
| List<? extends CiscoNexusVSMDevice> vsmDeviceList = _ciscoNexusVSMService.getCiscoNexusVSMs(this); |
| |
| if (vsmDeviceList.size() > 0) { |
| ListResponse<CiscoNexusVSMResponse> response = new ListResponse<CiscoNexusVSMResponse>(); |
| List<CiscoNexusVSMResponse> vsmResponses = new ArrayList<CiscoNexusVSMResponse>(); |
| for (CiscoNexusVSMDevice vsmDevice : vsmDeviceList) { |
| CiscoNexusVSMResponse vsmresponse = _ciscoNexusVSMService.createCiscoNexusVSMDetailedResponse(vsmDevice); |
| vsmresponse.setObjectName("cisconexusvsm"); |
| response.setResponseName(getCommandName()); |
| vsmResponses.add(vsmresponse); |
| } |
| response.setResponses(vsmResponses); |
| response.setResponseName(getCommandName()); |
| this.setResponseObject(response); |
| } else { |
| throw new ServerApiException(BaseListCmd.INTERNAL_ERROR, "No VSM found."); |
| } |
| } |
| |
| @Override |
| public String getCommandName() { |
| return s_name; |
| } |
| |
| @Override |
| public long getEntityOwnerId() { |
| return Account.ACCOUNT_ID_SYSTEM; |
| } |
| } |