![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.StorageDrsOptionSpec Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for StorageDrsOptionSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StorageDrsOptionSpec">
* <complexContent>
* <extension base="{urn:vim25}ArrayUpdateSpec">
* <sequence>
* <element name="option" type="{urn:vim25}OptionValue" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StorageDrsOptionSpec", propOrder = {
"option"
})
public class StorageDrsOptionSpec
extends ArrayUpdateSpec
{
protected OptionValue option;
/**
* Gets the value of the option property.
*
* @return
* possible object is
* {@link OptionValue }
*
*/
public OptionValue getOption() {
return option;
}
/**
* Sets the value of the option property.
*
* @param value
* allowed object is
* {@link OptionValue }
*
*/
public void setOption(OptionValue value) {
this.option = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy