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

com.scene7.ipsapi.TaskProgress 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 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/2017-10-29-beta}TaskItemProgressArray"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TaskProgress", propOrder = { "taskType", "taskState", "numProcessed", "numProcessing", "numPending", "progress", "progressMessage", "lastProgressUpdate", "taskItemProgressArray" }) public class TaskProgress { @XmlElement(required = true) protected String taskType; @XmlElement(required = true) protected String taskState; protected int numProcessed; protected int numProcessing; protected int numPending; protected double progress; @XmlElement(required = true) protected String progressMessage; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastProgressUpdate; @XmlElement(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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy