
com.vmware.vim25.VirtualDevice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim25;
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:vim25}DynamicData">
* <sequence>
* <element name="key" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="deviceInfo" type="{urn:vim25}Description" minOccurs="0"/>
* <element name="backing" type="{urn:vim25}VirtualDeviceBackingInfo" minOccurs="0"/>
* <element name="connectable" type="{urn:vim25}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,
VirtualPCIPassthrough.class,
VirtualMachineVideoCard.class,
VirtualFloppy.class,
VirtualSoundCard.class,
VirtualKeyboard.class,
VirtualMachineVMIROM.class,
VirtualMachineVMCIDevice.class,
VirtualSerialPort.class,
VirtualParallelPort.class,
VirtualController.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