com.scene7.ipsapi.UploadTaskStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.06.06 at 01:39:50 PM UTC
//
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/2024-05-30-beta}UploadTaskArray"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UploadTaskStatus", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"jobHandle",
"isJobStopped",
"lastAdded",
"lastCompleted",
"taskArray"
})
public class UploadTaskStatus {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String jobHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected boolean isJobStopped;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastAdded;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastCompleted;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", 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;
}
}