DownloadNextResponse.java
package org.apache.cxf;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for downloadNextResponse complex type</p>.
*
* <p>The following schema fragment specifies the expected content contained within this class.</p>
*
* <pre>{@code
* <complexType name="downloadNextResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="downloadNextResponse" type="{http://cxf.apache.org/}downloadNextResponseType" minOccurs="0" form="qualified"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "downloadNextResponse", propOrder = {
"downloadNextResponse"
})
public class DownloadNextResponse {
@XmlElement(namespace = "http://cxf.apache.org/")
protected DownloadNextResponseType downloadNextResponse;
/**
* Gets the value of the downloadNextResponse property.
*
* @return
* possible object is
* {@link DownloadNextResponseType }
*
*/
public DownloadNextResponseType getDownloadNextResponse() {
return downloadNextResponse;
}
/**
* Sets the value of the downloadNextResponse property.
*
* @param value
* allowed object is
* {@link DownloadNextResponseType }
*
*/
public void setDownloadNextResponse(DownloadNextResponseType value) {
this.downloadNextResponse = value;
}
}