com.vmware.vim25.DeviceNotSupported 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DeviceNotSupported complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DeviceNotSupported">
* <complexContent>
* <extension base="{urn:vim25}VirtualHardwareCompatibilityIssue">
* <sequence>
* <element name="device" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DeviceNotSupported", propOrder = {
"device",
"reason"
})
@XmlSeeAlso({
DeviceControllerNotSupported.class,
DigestNotSupported.class,
FileBackedPortNotSupported.class,
MultiWriterNotSupported.class,
NonPersistentDisksNotSupported.class,
RDMNotSupported.class,
RawDiskNotSupported.class,
RemoteDeviceNotSupported.class,
SharedBusControllerNotSupported.class,
VMINotSupported.class,
DeviceBackingNotSupported.class,
VirtualDiskModeNotSupported.class,
VirtualEthernetCardNotSupported.class
})
public class DeviceNotSupported
extends VirtualHardwareCompatibilityIssue
{
@XmlElement(required = true)
protected String device;
protected String reason;
/**
* Gets the value of the device property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDevice() {
return device;
}
/**
* Sets the value of the device property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDevice(String value) {
this.device = value;
}
/**
* Gets the value of the reason property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReason() {
return reason;
}
/**
* Sets the value of the reason property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReason(String value) {
this.reason = value;
}
}