com.vmware.vim25.VirtualPCIPassthroughDeviceBackingInfo 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 VirtualPCIPassthroughDeviceBackingInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualPCIPassthroughDeviceBackingInfo">
* <complexContent>
* <extension base="{urn:vim25}VirtualDeviceDeviceBackingInfo">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="deviceId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="systemId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="vendorId" type="{http://www.w3.org/2001/XMLSchema}short"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualPCIPassthroughDeviceBackingInfo", propOrder = {
"id",
"deviceId",
"systemId",
"vendorId"
})
public class VirtualPCIPassthroughDeviceBackingInfo
extends VirtualDeviceDeviceBackingInfo
{
@XmlElement(required = true)
protected String id;
@XmlElement(required = true)
protected String deviceId;
@XmlElement(required = true)
protected String systemId;
protected short vendorId;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the deviceId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDeviceId() {
return deviceId;
}
/**
* Sets the value of the deviceId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDeviceId(String value) {
this.deviceId = value;
}
/**
* Gets the value of the systemId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSystemId() {
return systemId;
}
/**
* Sets the value of the systemId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSystemId(String value) {
this.systemId = value;
}
/**
* Gets the value of the vendorId property.
*
*/
public short getVendorId() {
return vendorId;
}
/**
* Sets the value of the vendorId property.
*
*/
public void setVendorId(short value) {
this.vendorId = value;
}
}