com.scene7.ipsapi.SubmitJobParam 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.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="companyHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="userHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="jobName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="locale" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="execTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="execSchedule" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="imageServingPublishJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}ImageServingPublishJob" minOccurs="0"/>
* <element name="imageRenderingPublishJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}ImageRenderingPublishJob" minOccurs="0"/>
* <element name="videoPublishJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}VideoPublishJob" minOccurs="0"/>
* <element name="serverDirectoryPublishJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}ServerDirectoryPublishJob" minOccurs="0"/>
* <element name="metadataPublishJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}MetadataPublishJob" minOccurs="0"/>
* <element name="uploadDirectoryJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}UploadDirectoryJob" minOccurs="0"/>
* <element name="uploadUrlsJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}UploadUrlsJob" minOccurs="0"/>
* <element name="optimizeImagesJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}OptimizeImagesJob" minOccurs="0"/>
* <element name="ripPdfsJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}RipPdfsJob" minOccurs="0"/>
* <element name="reprocessAssetsJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}ReprocessAssetsJob" minOccurs="0"/>
* <element name="transcribeTranslateJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}TranscribeTranslateJob" minOccurs="0"/>
* <element name="createVideoSitemapJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}CreateVideoSitemapJob" minOccurs="0"/>
* <element name="exportJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}ExportJob" minOccurs="0"/>
* <element name="automatedSetGenerationJob" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}AutomatedSetGenerationJob" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"companyHandle",
"userHandle",
"jobName",
"locale",
"execTime",
"execSchedule",
"description",
"imageServingPublishJob",
"imageRenderingPublishJob",
"videoPublishJob",
"serverDirectoryPublishJob",
"metadataPublishJob",
"uploadDirectoryJob",
"uploadUrlsJob",
"optimizeImagesJob",
"ripPdfsJob",
"reprocessAssetsJob",
"transcribeTranslateJob",
"createVideoSitemapJob",
"exportJob",
"automatedSetGenerationJob"
})
@XmlRootElement(name = "submitJobParam", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
public class SubmitJobParam {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String companyHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String userHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String jobName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String locale;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar execTime;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String execSchedule;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String description;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected ImageServingPublishJob imageServingPublishJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected ImageRenderingPublishJob imageRenderingPublishJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected VideoPublishJob videoPublishJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected ServerDirectoryPublishJob serverDirectoryPublishJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected MetadataPublishJob metadataPublishJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected UploadDirectoryJob uploadDirectoryJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected UploadUrlsJob uploadUrlsJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected OptimizeImagesJob optimizeImagesJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected RipPdfsJob ripPdfsJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected ReprocessAssetsJob reprocessAssetsJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected TranscribeTranslateJob transcribeTranslateJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected CreateVideoSitemapJob createVideoSitemapJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected ExportJob exportJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected AutomatedSetGenerationJob automatedSetGenerationJob;
/**
* Gets the value of the companyHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCompanyHandle() {
return companyHandle;
}
/**
* Sets the value of the companyHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCompanyHandle(String value) {
this.companyHandle = value;
}
/**
* Gets the value of the userHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserHandle() {
return userHandle;
}
/**
* Sets the value of the userHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserHandle(String value) {
this.userHandle = value;
}
/**
* Gets the value of the jobName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobName() {
return jobName;
}
/**
* Sets the value of the jobName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJobName(String value) {
this.jobName = value;
}
/**
* Gets the value of the locale property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocale() {
return locale;
}
/**
* Sets the value of the locale property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocale(String value) {
this.locale = value;
}
/**
* Gets the value of the execTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExecTime() {
return execTime;
}
/**
* Sets the value of the execTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setExecTime(XMLGregorianCalendar value) {
this.execTime = value;
}
/**
* Gets the value of the execSchedule property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExecSchedule() {
return execSchedule;
}
/**
* Sets the value of the execSchedule property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExecSchedule(String value) {
this.execSchedule = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the imageServingPublishJob property.
*
* @return
* possible object is
* {@link ImageServingPublishJob }
*
*/
public ImageServingPublishJob getImageServingPublishJob() {
return imageServingPublishJob;
}
/**
* Sets the value of the imageServingPublishJob property.
*
* @param value
* allowed object is
* {@link ImageServingPublishJob }
*
*/
public void setImageServingPublishJob(ImageServingPublishJob value) {
this.imageServingPublishJob = value;
}
/**
* Gets the value of the imageRenderingPublishJob property.
*
* @return
* possible object is
* {@link ImageRenderingPublishJob }
*
*/
public ImageRenderingPublishJob getImageRenderingPublishJob() {
return imageRenderingPublishJob;
}
/**
* Sets the value of the imageRenderingPublishJob property.
*
* @param value
* allowed object is
* {@link ImageRenderingPublishJob }
*
*/
public void setImageRenderingPublishJob(ImageRenderingPublishJob value) {
this.imageRenderingPublishJob = value;
}
/**
* Gets the value of the videoPublishJob property.
*
* @return
* possible object is
* {@link VideoPublishJob }
*
*/
public VideoPublishJob getVideoPublishJob() {
return videoPublishJob;
}
/**
* Sets the value of the videoPublishJob property.
*
* @param value
* allowed object is
* {@link VideoPublishJob }
*
*/
public void setVideoPublishJob(VideoPublishJob value) {
this.videoPublishJob = value;
}
/**
* Gets the value of the serverDirectoryPublishJob property.
*
* @return
* possible object is
* {@link ServerDirectoryPublishJob }
*
*/
public ServerDirectoryPublishJob getServerDirectoryPublishJob() {
return serverDirectoryPublishJob;
}
/**
* Sets the value of the serverDirectoryPublishJob property.
*
* @param value
* allowed object is
* {@link ServerDirectoryPublishJob }
*
*/
public void setServerDirectoryPublishJob(ServerDirectoryPublishJob value) {
this.serverDirectoryPublishJob = value;
}
/**
* Gets the value of the metadataPublishJob property.
*
* @return
* possible object is
* {@link MetadataPublishJob }
*
*/
public MetadataPublishJob getMetadataPublishJob() {
return metadataPublishJob;
}
/**
* Sets the value of the metadataPublishJob property.
*
* @param value
* allowed object is
* {@link MetadataPublishJob }
*
*/
public void setMetadataPublishJob(MetadataPublishJob value) {
this.metadataPublishJob = value;
}
/**
* Gets the value of the uploadDirectoryJob property.
*
* @return
* possible object is
* {@link UploadDirectoryJob }
*
*/
public UploadDirectoryJob getUploadDirectoryJob() {
return uploadDirectoryJob;
}
/**
* Sets the value of the uploadDirectoryJob property.
*
* @param value
* allowed object is
* {@link UploadDirectoryJob }
*
*/
public void setUploadDirectoryJob(UploadDirectoryJob value) {
this.uploadDirectoryJob = value;
}
/**
* Gets the value of the uploadUrlsJob property.
*
* @return
* possible object is
* {@link UploadUrlsJob }
*
*/
public UploadUrlsJob getUploadUrlsJob() {
return uploadUrlsJob;
}
/**
* Sets the value of the uploadUrlsJob property.
*
* @param value
* allowed object is
* {@link UploadUrlsJob }
*
*/
public void setUploadUrlsJob(UploadUrlsJob value) {
this.uploadUrlsJob = value;
}
/**
* Gets the value of the optimizeImagesJob property.
*
* @return
* possible object is
* {@link OptimizeImagesJob }
*
*/
public OptimizeImagesJob getOptimizeImagesJob() {
return optimizeImagesJob;
}
/**
* Sets the value of the optimizeImagesJob property.
*
* @param value
* allowed object is
* {@link OptimizeImagesJob }
*
*/
public void setOptimizeImagesJob(OptimizeImagesJob value) {
this.optimizeImagesJob = value;
}
/**
* Gets the value of the ripPdfsJob property.
*
* @return
* possible object is
* {@link RipPdfsJob }
*
*/
public RipPdfsJob getRipPdfsJob() {
return ripPdfsJob;
}
/**
* Sets the value of the ripPdfsJob property.
*
* @param value
* allowed object is
* {@link RipPdfsJob }
*
*/
public void setRipPdfsJob(RipPdfsJob value) {
this.ripPdfsJob = value;
}
/**
* Gets the value of the reprocessAssetsJob property.
*
* @return
* possible object is
* {@link ReprocessAssetsJob }
*
*/
public ReprocessAssetsJob getReprocessAssetsJob() {
return reprocessAssetsJob;
}
/**
* Sets the value of the reprocessAssetsJob property.
*
* @param value
* allowed object is
* {@link ReprocessAssetsJob }
*
*/
public void setReprocessAssetsJob(ReprocessAssetsJob value) {
this.reprocessAssetsJob = value;
}
/**
* Gets the value of the transcribeTranslateJob property.
*
* @return
* possible object is
* {@link TranscribeTranslateJob }
*
*/
public TranscribeTranslateJob getTranscribeTranslateJob() {
return transcribeTranslateJob;
}
/**
* Sets the value of the transcribeTranslateJob property.
*
* @param value
* allowed object is
* {@link TranscribeTranslateJob }
*
*/
public void setTranscribeTranslateJob(TranscribeTranslateJob value) {
this.transcribeTranslateJob = value;
}
/**
* Gets the value of the createVideoSitemapJob property.
*
* @return
* possible object is
* {@link CreateVideoSitemapJob }
*
*/
public CreateVideoSitemapJob getCreateVideoSitemapJob() {
return createVideoSitemapJob;
}
/**
* Sets the value of the createVideoSitemapJob property.
*
* @param value
* allowed object is
* {@link CreateVideoSitemapJob }
*
*/
public void setCreateVideoSitemapJob(CreateVideoSitemapJob value) {
this.createVideoSitemapJob = value;
}
/**
* Gets the value of the exportJob property.
*
* @return
* possible object is
* {@link ExportJob }
*
*/
public ExportJob getExportJob() {
return exportJob;
}
/**
* Sets the value of the exportJob property.
*
* @param value
* allowed object is
* {@link ExportJob }
*
*/
public void setExportJob(ExportJob value) {
this.exportJob = value;
}
/**
* Gets the value of the automatedSetGenerationJob property.
*
* @return
* possible object is
* {@link AutomatedSetGenerationJob }
*
*/
public AutomatedSetGenerationJob getAutomatedSetGenerationJob() {
return automatedSetGenerationJob;
}
/**
* Sets the value of the automatedSetGenerationJob property.
*
* @param value
* allowed object is
* {@link AutomatedSetGenerationJob }
*
*/
public void setAutomatedSetGenerationJob(AutomatedSetGenerationJob value) {
this.automatedSetGenerationJob = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy