com.vmware.vim25.DiskNotSupported Maven / Gradle / Ivy
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 DiskNotSupported complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DiskNotSupported">
* <complexContent>
* <extension base="{urn:vim25}VirtualHardwareCompatibilityIssue">
* <sequence>
* <element name="disk" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DiskNotSupported", propOrder = {
"disk"
})
@XmlSeeAlso({
IDEDiskNotSupported.class
})
public class DiskNotSupported
extends VirtualHardwareCompatibilityIssue
{
protected int disk;
/**
* Gets the value of the disk property.
*
*/
public int getDisk() {
return disk;
}
/**
* Sets the value of the disk property.
*
*/
public void setDisk(int value) {
this.disk = value;
}
}