![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.StorageIOAllocationOption 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 StorageIOAllocationOption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StorageIOAllocationOption">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="limitOption" type="{urn:vim25}LongOption"/>
* <element name="sharesOption" type="{urn:vim25}SharesOption"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StorageIOAllocationOption", propOrder = {
"limitOption",
"sharesOption"
})
public class StorageIOAllocationOption
extends DynamicData
{
@XmlElement(required = true)
protected LongOption limitOption;
@XmlElement(required = true)
protected SharesOption sharesOption;
/**
* Gets the value of the limitOption property.
*
* @return
* possible object is
* {@link LongOption }
*
*/
public LongOption getLimitOption() {
return limitOption;
}
/**
* Sets the value of the limitOption property.
*
* @param value
* allowed object is
* {@link LongOption }
*
*/
public void setLimitOption(LongOption value) {
this.limitOption = value;
}
/**
* Gets the value of the sharesOption property.
*
* @return
* possible object is
* {@link SharesOption }
*
*/
public SharesOption getSharesOption() {
return sharesOption;
}
/**
* Sets the value of the sharesOption property.
*
* @param value
* allowed object is
* {@link SharesOption }
*
*/
public void setSharesOption(SharesOption value) {
this.sharesOption = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy