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