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

com.scene7.ipsapi.UploadTaskStatus Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


package com.scene7.ipsapi;

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;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for UploadTaskStatus complex type. * *

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

 * <complexType name="UploadTaskStatus">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="jobHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="isJobStopped" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="lastAdded" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="lastCompleted" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="taskArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}UploadTaskArray"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UploadTaskStatus", propOrder = { "jobHandle", "isJobStopped", "lastAdded", "lastCompleted", "taskArray" }) public class UploadTaskStatus { @XmlElement(required = true) protected String jobHandle; protected boolean isJobStopped; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastAdded; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastCompleted; @XmlElement(required = true) protected UploadTaskArray taskArray; /** * Gets the value of the jobHandle property. * * @return * possible object is * {@link String } * */ public String getJobHandle() { return jobHandle; } /** * Sets the value of the jobHandle property. * * @param value * allowed object is * {@link String } * */ public void setJobHandle(String value) { this.jobHandle = value; } /** * Gets the value of the isJobStopped property. * */ public boolean isIsJobStopped() { return isJobStopped; } /** * Sets the value of the isJobStopped property. * */ public void setIsJobStopped(boolean value) { this.isJobStopped = value; } /** * Gets the value of the lastAdded property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastAdded() { return lastAdded; } /** * Sets the value of the lastAdded property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastAdded(XMLGregorianCalendar value) { this.lastAdded = value; } /** * Gets the value of the lastCompleted property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastCompleted() { return lastCompleted; } /** * Sets the value of the lastCompleted property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastCompleted(XMLGregorianCalendar value) { this.lastCompleted = value; } /** * Gets the value of the taskArray property. * * @return * possible object is * {@link UploadTaskArray } * */ public UploadTaskArray getTaskArray() { return taskArray; } /** * Sets the value of the taskArray property. * * @param value * allowed object is * {@link UploadTaskArray } * */ public void setTaskArray(UploadTaskArray value) { this.taskArray = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy