You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ke...@apache.org on 2012/05/28 00:30:44 UTC

[40/50] git commit: CS-9919 Support for Nexus Swiches (Cisco Vswitches)

CS-9919 Support for Nexus Swiches (Cisco Vswitches)

Description:

	Added command class GetCiscoVSMByClusterIdCmd.


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/75d0f911
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/75d0f911
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/75d0f911

Branch: refs/heads/master
Commit: 75d0f91186d95b65d02fc701c9a1a5f412945b79
Parents: c59d541
Author: Sateesh Chodapuneedi <sa...@citrix.com>
Authored: Mon May 14 11:53:15 2012 +0530
Committer: Vijayendra Bhamidipati <vi...@citrix.com>
Committed: Fri May 25 17:44:52 2012 -0700

----------------------------------------------------------------------
 .../api/commands/GetCiscoVSMByClusterIdCmd.java    |   36 +++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/75d0f911/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 0000000..41a903f
--- /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;
+    }
+
+}