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

com.scene7.ipsapi.UploadTask 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.XmlType;


/**
 * 

Java class for UploadTask complex type. * *

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

 * <complexType name="UploadTask">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="file" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="processingStatus" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="workflowState" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="progress" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="renditions" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}UploadRenditionTaskArray"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UploadTask", propOrder = { "file", "processingStatus", "workflowState", "progress", "renditions" }) public class UploadTask { @XmlElement(required = true) protected String file; @XmlElement(required = true) protected String processingStatus; @XmlElement(required = true) protected String workflowState; protected double progress; @XmlElement(required = true) protected UploadRenditionTaskArray renditions; /** * Gets the value of the file property. * * @return * possible object is * {@link String } * */ public String getFile() { return file; } /** * Sets the value of the file property. * * @param value * allowed object is * {@link String } * */ public void setFile(String value) { this.file = value; } /** * Gets the value of the processingStatus property. * * @return * possible object is * {@link String } * */ public String getProcessingStatus() { return processingStatus; } /** * Sets the value of the processingStatus property. * * @param value * allowed object is * {@link String } * */ public void setProcessingStatus(String value) { this.processingStatus = value; } /** * Gets the value of the workflowState property. * * @return * possible object is * {@link String } * */ public String getWorkflowState() { return workflowState; } /** * Sets the value of the workflowState property. * * @param value * allowed object is * {@link String } * */ public void setWorkflowState(String value) { this.workflowState = 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 renditions property. * * @return * possible object is * {@link UploadRenditionTaskArray } * */ public UploadRenditionTaskArray getRenditions() { return renditions; } /** * Sets the value of the renditions property. * * @param value * allowed object is * {@link UploadRenditionTaskArray } * */ public void setRenditions(UploadRenditionTaskArray value) { this.renditions = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy