com.vmware.vim25.VirtualPointingDeviceBackingOption Maven / Gradle / Ivy
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 VirtualPointingDeviceBackingOption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualPointingDeviceBackingOption">
* <complexContent>
* <extension base="{urn:vim25}VirtualDeviceDeviceBackingOption">
* <sequence>
* <element name="hostPointingDevice" type="{urn:vim25}ChoiceOption"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualPointingDeviceBackingOption", propOrder = {
"hostPointingDevice"
})
public class VirtualPointingDeviceBackingOption
extends VirtualDeviceDeviceBackingOption
{
@XmlElement(required = true)
protected ChoiceOption hostPointingDevice;
/**
* Gets the value of the hostPointingDevice property.
*
* @return
* possible object is
* {@link ChoiceOption }
*
*/
public ChoiceOption getHostPointingDevice() {
return hostPointingDevice;
}
/**
* Sets the value of the hostPointingDevice property.
*
* @param value
* allowed object is
* {@link ChoiceOption }
*
*/
public void setHostPointingDevice(ChoiceOption value) {
this.hostPointingDevice = value;
}
}