
com.adlibsoftware.client.GetJobsStatusResponse Maven / Gradle / Ivy
package com.adlibsoftware.client;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="GetJobsStatusResult" type="{http://schemas.datacontract.org/2004/07/Adlib.Public.Objects}ArrayOfJobStatusResponse" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"getJobsStatusResult"
})
@XmlRootElement(name = "GetJobsStatusResponse")
public class GetJobsStatusResponse {
@XmlElementRef(name = "GetJobsStatusResult", namespace = "http://adlibsoftware.com/", type = JAXBElement.class, required = false)
protected JAXBElement getJobsStatusResult;
/**
* Gets the value of the getJobsStatusResult property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link ArrayOfJobStatusResponse }{@code >}
*
*/
public JAXBElement getGetJobsStatusResult() {
return getJobsStatusResult;
}
/**
* Sets the value of the getJobsStatusResult property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link ArrayOfJobStatusResponse }{@code >}
*
*/
public void setGetJobsStatusResult(JAXBElement value) {
this.getJobsStatusResult = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy