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

com.vmware.vim25.VirtualDeviceConnectOption Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

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 VirtualDeviceConnectOption complex type. * *

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

 * <complexType name="VirtualDeviceConnectOption">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="startConnected" type="{urn:vim25}BoolOption"/>
 *         <element name="allowGuestControl" type="{urn:vim25}BoolOption"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDeviceConnectOption", propOrder = { "startConnected", "allowGuestControl" }) public class VirtualDeviceConnectOption extends DynamicData { @XmlElement(required = true) protected BoolOption startConnected; @XmlElement(required = true) protected BoolOption allowGuestControl; /** * Gets the value of the startConnected property. * * @return * possible object is * {@link BoolOption } * */ public BoolOption getStartConnected() { return startConnected; } /** * Sets the value of the startConnected property. * * @param value * allowed object is * {@link BoolOption } * */ public void setStartConnected(BoolOption value) { this.startConnected = value; } /** * Gets the value of the allowGuestControl property. * * @return * possible object is * {@link BoolOption } * */ public BoolOption getAllowGuestControl() { return allowGuestControl; } /** * Sets the value of the allowGuestControl property. * * @param value * allowed object is * {@link BoolOption } * */ public void setAllowGuestControl(BoolOption value) { this.allowGuestControl = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy