com.vmware.vim25.RetrieveOptions 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 RetrieveOptions complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RetrieveOptions">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="maxObjects" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RetrieveOptions", propOrder = {
"maxObjects"
})
public class RetrieveOptions
extends DynamicData
{
protected Integer maxObjects;
/**
* Gets the value of the maxObjects property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMaxObjects() {
return maxObjects;
}
/**
* Sets the value of the maxObjects property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMaxObjects(Integer value) {
this.maxObjects = value;
}
}