All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adlibsoftware.client.JobStatusResponse Maven / Gradle / Ivy


package com.adlibsoftware.client;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for JobStatusResponse complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="JobStatusResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="JobId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="Status" type="{http://schemas.datacontract.org/2004/07/Adlib.Public.Enums.Jobs}JobStatus"/>
 *         <element name="State" type="{http://schemas.datacontract.org/2004/07/Adlib.Public.Enums.Jobs}JobState"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JobStatusResponse", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", propOrder = { "jobId", "status", "state" }) public class JobStatusResponse { @XmlElement(name = "JobId") protected long jobId; @XmlElement(name = "Status", required = true) @XmlSchemaType(name = "string") protected JobStatus status; @XmlElement(name = "State", required = true, nillable = true) @XmlSchemaType(name = "string") protected JobState state; /** * Gets the value of the jobId property. * */ public long getJobId() { return jobId; } /** * Sets the value of the jobId property. * */ public void setJobId(long value) { this.jobId = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link JobStatus } * */ public JobStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link JobStatus } * */ public void setStatus(JobStatus value) { this.status = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link JobState } * */ public JobState getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link JobState } * */ public void setState(JobState value) { this.state = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy