com.scene7.ipsapi.UploadPostParam 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.XmlType;
/**
* 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="jobName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="jobHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="locale" 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="destFolder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="fileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="endJob" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="uploadParams" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}UploadPostJob" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"companyHandle",
"jobName",
"jobHandle",
"locale",
"description",
"destFolder",
"fileName",
"endJob",
"uploadParams"
})
@XmlRootElement(name = "uploadPostParam", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
public class UploadPostParam {
@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 jobName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String jobHandle;
@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")
protected String description;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String destFolder;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String fileName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Boolean endJob;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected UploadPostJob uploadParams;
/**
* 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 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 jobHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobHandle() {
return jobHandle;
}
/**
* Sets the value of the jobHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJobHandle(String value) {
this.jobHandle = 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 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 destFolder property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDestFolder() {
return destFolder;
}
/**
* Sets the value of the destFolder property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDestFolder(String value) {
this.destFolder = value;
}
/**
* Gets the value of the fileName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFileName() {
return fileName;
}
/**
* Sets the value of the fileName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFileName(String value) {
this.fileName = value;
}
/**
* Gets the value of the endJob property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEndJob() {
return endJob;
}
/**
* Sets the value of the endJob property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEndJob(Boolean value) {
this.endJob = value;
}
/**
* Gets the value of the uploadParams property.
*
* @return
* possible object is
* {@link UploadPostJob }
*
*/
public UploadPostJob getUploadParams() {
return uploadParams;
}
/**
* Sets the value of the uploadParams property.
*
* @param value
* allowed object is
* {@link UploadPostJob }
*
*/
public void setUploadParams(UploadPostJob value) {
this.uploadParams = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy