All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim.VirtualEthernetCardOption Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VirtualEthernetCardOption complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="VirtualEthernetCardOption">
 *   <complexContent>
 *     <extension base="{urn:vim2}VirtualDeviceOption">
 *       <sequence>
 *         <element name="supportedOUI" type="{urn:vim2}ChoiceOption"/>
 *         <element name="macType" type="{urn:vim2}ChoiceOption"/>
 *         <element name="wakeOnLanEnabled" type="{urn:vim2}BoolOption"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualEthernetCardOption", propOrder = { "supportedOUI", "macType", "wakeOnLanEnabled" }) @XmlSeeAlso({ VirtualPCNet32Option.class, VirtualVmxnetOption.class, VirtualE1000Option.class }) public class VirtualEthernetCardOption extends VirtualDeviceOption { @XmlElement(required = true) protected ChoiceOption supportedOUI; @XmlElement(required = true) protected ChoiceOption macType; @XmlElement(required = true) protected BoolOption wakeOnLanEnabled; /** * Gets the value of the supportedOUI property. * * @return * possible object is * {@link ChoiceOption } * */ public ChoiceOption getSupportedOUI() { return supportedOUI; } /** * Sets the value of the supportedOUI property. * * @param value * allowed object is * {@link ChoiceOption } * */ public void setSupportedOUI(ChoiceOption value) { this.supportedOUI = value; } /** * Gets the value of the macType property. * * @return * possible object is * {@link ChoiceOption } * */ public ChoiceOption getMacType() { return macType; } /** * Sets the value of the macType property. * * @param value * allowed object is * {@link ChoiceOption } * */ public void setMacType(ChoiceOption value) { this.macType = value; } /** * Gets the value of the wakeOnLanEnabled property. * * @return * possible object is * {@link BoolOption } * */ public BoolOption getWakeOnLanEnabled() { return wakeOnLanEnabled; } /** * Sets the value of the wakeOnLanEnabled property. * * @param value * allowed object is * {@link BoolOption } * */ public void setWakeOnLanEnabled(BoolOption value) { this.wakeOnLanEnabled = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy