com.scene7.ipsapi.TaskProgress 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
The newest version!
//
// 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 TaskProgress complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TaskProgress">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="taskType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="taskState" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="numProcessed" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="numProcessing" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="numPending" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="progress" type="{http://www.w3.org/2001/XMLSchema}double"/>
* <element name="progressMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="lastProgressUpdate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="taskItemProgressArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}TaskItemProgressArray"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TaskProgress", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"taskType",
"taskState",
"numProcessed",
"numProcessing",
"numPending",
"progress",
"progressMessage",
"lastProgressUpdate",
"taskItemProgressArray"
})
public class TaskProgress {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String taskType;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String taskState;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected int numProcessed;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected int numProcessing;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected int numPending;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected double progress;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String progressMessage;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastProgressUpdate;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected TaskItemProgressArray taskItemProgressArray;
/**
* Gets the value of the taskType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTaskType() {
return taskType;
}
/**
* Sets the value of the taskType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTaskType(String value) {
this.taskType = value;
}
/**
* Gets the value of the taskState property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTaskState() {
return taskState;
}
/**
* Sets the value of the taskState property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTaskState(String value) {
this.taskState = value;
}
/**
* Gets the value of the numProcessed property.
*
*/
public int getNumProcessed() {
return numProcessed;
}
/**
* Sets the value of the numProcessed property.
*
*/
public void setNumProcessed(int value) {
this.numProcessed = value;
}
/**
* Gets the value of the numProcessing property.
*
*/
public int getNumProcessing() {
return numProcessing;
}
/**
* Sets the value of the numProcessing property.
*
*/
public void setNumProcessing(int value) {
this.numProcessing = value;
}
/**
* Gets the value of the numPending property.
*
*/
public int getNumPending() {
return numPending;
}
/**
* Sets the value of the numPending property.
*
*/
public void setNumPending(int value) {
this.numPending = value;
}
/**
* Gets the value of the progress property.
*
*/
public double getProgress() {
return progress;
}
/**
* Sets the value of the progress property.
*
*/
public void setProgress(double value) {
this.progress = value;
}
/**
* Gets the value of the progressMessage property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProgressMessage() {
return progressMessage;
}
/**
* Sets the value of the progressMessage property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProgressMessage(String value) {
this.progressMessage = value;
}
/**
* Gets the value of the lastProgressUpdate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastProgressUpdate() {
return lastProgressUpdate;
}
/**
* Sets the value of the lastProgressUpdate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastProgressUpdate(XMLGregorianCalendar value) {
this.lastProgressUpdate = value;
}
/**
* Gets the value of the taskItemProgressArray property.
*
* @return
* possible object is
* {@link TaskItemProgressArray }
*
*/
public TaskItemProgressArray getTaskItemProgressArray() {
return taskItemProgressArray;
}
/**
* Sets the value of the taskItemProgressArray property.
*
* @param value
* allowed object is
* {@link TaskItemProgressArray }
*
*/
public void setTaskItemProgressArray(TaskItemProgressArray value) {
this.taskItemProgressArray = value;
}
}