com.scene7.ipsapi.UploadTask 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.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/2024-05-30-beta}UploadRenditionTaskArray"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UploadTask", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"file",
"processingStatus",
"workflowState",
"progress",
"renditions"
})
public class UploadTask {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String file;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String processingStatus;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String workflowState;
@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 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;
}
}