From 014773e7e4e307eab0f88d07e0cc0a41cbf25483 Mon Sep 17 00:00:00 2001 From: Sateesh Chodapuneedi Date: Mon, 14 May 2012 11:53:15 +0530 Subject: [PATCH] CS-9919 Support for Nexus Swiches (Cisco Vswitches) Description: Added command class GetCiscoVSMByClusterIdCmd. --- .../commands/GetCiscoVSMByClusterIdCmd.java | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 server/src/com/cloud/api/commands/GetCiscoVSMByClusterIdCmd.java diff --git a/server/src/com/cloud/api/commands/GetCiscoVSMByClusterIdCmd.java b/server/src/com/cloud/api/commands/GetCiscoVSMByClusterIdCmd.java new file mode 100755 index 00000000000..41a903f110d --- /dev/null +++ b/server/src/com/cloud/api/commands/GetCiscoVSMByClusterIdCmd.java @@ -0,0 +1,36 @@ +package com.cloud.api.commands; + +import com.cloud.api.BaseCmd; +import com.cloud.api.ServerApiException; +import com.cloud.exception.ConcurrentOperationException; +import com.cloud.exception.InsufficientCapacityException; +import com.cloud.exception.NetworkRuleConflictException; +import com.cloud.exception.ResourceAllocationException; +import com.cloud.exception.ResourceUnavailableException; + +public class GetCiscoVSMByClusterIdCmd extends BaseCmd { + + @Override + public void execute() throws ResourceUnavailableException, InsufficientCapacityException, ServerApiException, ConcurrentOperationException, ResourceAllocationException, NetworkRuleConflictException { + // TODO Auto-generated method stub + + } + + @Override + public String getCommandName() { + // TODO Auto-generated method stub + return null; + } + + @Override + public long getEntityOwnerId() { + // TODO Auto-generated method stub + return 0; + } + + public long getClusterId() { + // TODO Auto-generated method stub + return 0; + } + +}