From 14ae4adbcd54d426f6c7ccaa22c60306b1cfcd8e Mon Sep 17 00:00:00 2001 From: Vijayendra Bhamidipati Date: Thu, 3 May 2012 14:03:10 -0700 Subject: [PATCH] CS-9919: Support for Nexus Swiches (Cisco Vswitches) Description: Fixing failure to load ClusterVSMMapDao by putting in a constructor that takes no arguments, inClusterVSMMapVO. --- server/src/com/cloud/dc/ClusterVSMMapVO.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/src/com/cloud/dc/ClusterVSMMapVO.java b/server/src/com/cloud/dc/ClusterVSMMapVO.java index 6af7ccf3f1c..4e536af90a0 100644 --- a/server/src/com/cloud/dc/ClusterVSMMapVO.java +++ b/server/src/com/cloud/dc/ClusterVSMMapVO.java @@ -35,6 +35,10 @@ public class ClusterVSMMapVO { this.clusterId = clusterId; this.vsmId = vsmId; } + + public ClusterVSMMapVO() { + // Do nothing. + } public long getClusterId() { return clusterId;