From c770d910b18eba9eef95acdab4b5cc772c7bfa7e Mon Sep 17 00:00:00 2001 From: Sateesh Chodapuneedi Date: Thu, 10 May 2012 03:36:06 +0530 Subject: [PATCH] CS 9919 - Support for Nexus Swiches (Cisco Vswitches) Support for various types of vswitches in VMware. --- .../vmware/mo/VirtualSwitchType.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 vmware-base/src/com/cloud/hypervisor/vmware/mo/VirtualSwitchType.java diff --git a/vmware-base/src/com/cloud/hypervisor/vmware/mo/VirtualSwitchType.java b/vmware-base/src/com/cloud/hypervisor/vmware/mo/VirtualSwitchType.java new file mode 100755 index 00000000000..c0eb485e20b --- /dev/null +++ b/vmware-base/src/com/cloud/hypervisor/vmware/mo/VirtualSwitchType.java @@ -0,0 +1,20 @@ +// Copyright 2012 Citrix Systems, Inc. Licensed under the +// Apache License, Version 2.0 (the "License"); you may not use this +// file except in compliance with the License. Citrix Systems, Inc. +// reserves all rights not expressly granted by the License. +// You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Automatically generated by addcopyright.py at 04/03/2012 + +package com.cloud.hypervisor.vmware.mo; + +public enum VirtualSwitchType { + StandardVirtualSwitch, + VMwareDistributedVirtualSwitch, + NexusDistributedVirtualSwitch, +}