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

com.vmware.vim.VirtualUSBControllerOption 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.XmlType;


/**
 * 

Java class for VirtualUSBControllerOption complex type. * *

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

 * <complexType name="VirtualUSBControllerOption">
 *   <complexContent>
 *     <extension base="{urn:vim2}VirtualControllerOption">
 *       <sequence>
 *         <element name="autoConnectDevices" type="{urn:vim2}BoolOption"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualUSBControllerOption", propOrder = { "autoConnectDevices" }) public class VirtualUSBControllerOption extends VirtualControllerOption { @XmlElement(required = true) protected BoolOption autoConnectDevices; /** * Gets the value of the autoConnectDevices property. * * @return * possible object is * {@link BoolOption } * */ public BoolOption getAutoConnectDevices() { return autoConnectDevices; } /** * Sets the value of the autoConnectDevices property. * * @param value * allowed object is * {@link BoolOption } * */ public void setAutoConnectDevices(BoolOption value) { this.autoConnectDevices = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy