DownloadNext.java
package org.apache.cxf;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for downloadNext complex type</p>.
*
* <p>The following schema fragment specifies the expected content contained within this class.</p>
*
* <pre>{@code
* <complexType name="downloadNext">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="minNumberOfChunks" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="simulate" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "downloadNext", propOrder = {
"minNumberOfChunks",
"simulate"
})
public class DownloadNext {
protected Integer minNumberOfChunks;
protected Boolean simulate;
/**
* Gets the value of the minNumberOfChunks property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMinNumberOfChunks() {
return minNumberOfChunks;
}
/**
* Sets the value of the minNumberOfChunks property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMinNumberOfChunks(Integer value) {
this.minNumberOfChunks = value;
}
/**
* Gets the value of the simulate property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSimulate() {
return simulate;
}
/**
* Sets the value of the simulate property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSimulate(Boolean value) {
this.simulate = value;
}
}