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

com.vmware.vim.VirtualDevice 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VirtualDevice complex type. * *

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

 * <complexType name="VirtualDevice">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="deviceInfo" type="{urn:vim2}Description" minOccurs="0"/>
 *         <element name="backing" type="{urn:vim2}VirtualDeviceBackingInfo" minOccurs="0"/>
 *         <element name="connectable" type="{urn:vim2}VirtualDeviceConnectInfo" minOccurs="0"/>
 *         <element name="controllerKey" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="unitNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDevice", propOrder = { "key", "deviceInfo", "backing", "connectable", "controllerKey", "unitNumber" }) @XmlSeeAlso({ VirtualDisk.class, VirtualUSB.class, VirtualSCSIPassthrough.class, VirtualCdrom.class, VirtualPointingDevice.class, VirtualMachineVideoCard.class, VirtualSerialPort.class, VirtualFloppy.class, VirtualParallelPort.class, VirtualSoundCard.class, VirtualController.class, VirtualKeyboard.class, VirtualEthernetCard.class }) public class VirtualDevice extends DynamicData { protected int key; protected Description deviceInfo; protected VirtualDeviceBackingInfo backing; protected VirtualDeviceConnectInfo connectable; protected Integer controllerKey; protected Integer unitNumber; /** * Gets the value of the key property. * */ public int getKey() { return key; } /** * Sets the value of the key property. * */ public void setKey(int value) { this.key = value; } /** * Gets the value of the deviceInfo property. * * @return * possible object is * {@link Description } * */ public Description getDeviceInfo() { return deviceInfo; } /** * Sets the value of the deviceInfo property. * * @param value * allowed object is * {@link Description } * */ public void setDeviceInfo(Description value) { this.deviceInfo = value; } /** * Gets the value of the backing property. * * @return * possible object is * {@link VirtualDeviceBackingInfo } * */ public VirtualDeviceBackingInfo getBacking() { return backing; } /** * Sets the value of the backing property. * * @param value * allowed object is * {@link VirtualDeviceBackingInfo } * */ public void setBacking(VirtualDeviceBackingInfo value) { this.backing = value; } /** * Gets the value of the connectable property. * * @return * possible object is * {@link VirtualDeviceConnectInfo } * */ public VirtualDeviceConnectInfo getConnectable() { return connectable; } /** * Sets the value of the connectable property. * * @param value * allowed object is * {@link VirtualDeviceConnectInfo } * */ public void setConnectable(VirtualDeviceConnectInfo value) { this.connectable = value; } /** * Gets the value of the controllerKey property. * * @return * possible object is * {@link Integer } * */ public Integer getControllerKey() { return controllerKey; } /** * Sets the value of the controllerKey property. * * @param value * allowed object is * {@link Integer } * */ public void setControllerKey(Integer value) { this.controllerKey = value; } /** * Gets the value of the unitNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getUnitNumber() { return unitNumber; } /** * Sets the value of the unitNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setUnitNumber(Integer value) { this.unitNumber = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy