
com.vmware.vim.VirtualPS2ControllerOption 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.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 VirtualPS2ControllerOption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualPS2ControllerOption">
* <complexContent>
* <extension base="{urn:vim2}VirtualControllerOption">
* <sequence>
* <element name="numKeyboards" type="{urn:vim2}IntOption"/>
* <element name="numPointingDevices" type="{urn:vim2}IntOption"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualPS2ControllerOption", propOrder = {
"numKeyboards",
"numPointingDevices"
})
public class VirtualPS2ControllerOption
extends VirtualControllerOption
{
@XmlElement(required = true)
protected IntOption numKeyboards;
@XmlElement(required = true)
protected IntOption numPointingDevices;
/**
* Gets the value of the numKeyboards property.
*
* @return
* possible object is
* {@link IntOption }
*
*/
public IntOption getNumKeyboards() {
return numKeyboards;
}
/**
* Sets the value of the numKeyboards property.
*
* @param value
* allowed object is
* {@link IntOption }
*
*/
public void setNumKeyboards(IntOption value) {
this.numKeyboards = value;
}
/**
* Gets the value of the numPointingDevices property.
*
* @return
* possible object is
* {@link IntOption }
*
*/
public IntOption getNumPointingDevices() {
return numPointingDevices;
}
/**
* Sets the value of the numPointingDevices property.
*
* @param value
* allowed object is
* {@link IntOption }
*
*/
public void setNumPointingDevices(IntOption value) {
this.numPointingDevices = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy