com.scene7.ipsapi.JobLog 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: 2022.10.13 at 11:32:55 AM 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for JobLog complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="JobLog">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="companyHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="jobHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="jobName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="originalJobName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="submitUserEmail" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="logType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="jobSubType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="startDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="endDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fileSuccessCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="fileErrorCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="fileWarningCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="fileDuplicateCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="fileUpdateCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="totalFileCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="transferSuccessCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="transferErrorCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="transferWarningCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="fatalError" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="detailTotalRows" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="detailArray" type="{http://www.scene7.com/IpsApi/xsd/2021-04-26-beta}JobLogDetailArray" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "JobLog", namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", propOrder = {
"companyHandle",
"jobHandle",
"jobName",
"originalJobName",
"submitUserEmail",
"logType",
"jobSubType",
"startDate",
"endDate",
"description",
"fileSuccessCount",
"fileErrorCount",
"fileWarningCount",
"fileDuplicateCount",
"fileUpdateCount",
"totalFileCount",
"transferSuccessCount",
"transferErrorCount",
"transferWarningCount",
"fatalError",
"detailTotalRows",
"detailArray"
})
public class JobLog {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String companyHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String jobHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String jobName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String originalJobName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String submitUserEmail;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String logType;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String jobSubType;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startDate;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endDate;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String description;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected int fileSuccessCount;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected int fileErrorCount;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected int fileWarningCount;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected int fileDuplicateCount;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected int fileUpdateCount;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected int totalFileCount;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected int transferSuccessCount;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected int transferErrorCount;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected int transferWarningCount;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected boolean fatalError;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected Integer detailTotalRows;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected JobLogDetailArray detailArray;
/**
* 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 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 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 originalJobName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOriginalJobName() {
return originalJobName;
}
/**
* Sets the value of the originalJobName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOriginalJobName(String value) {
this.originalJobName = value;
}
/**
* Gets the value of the submitUserEmail property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSubmitUserEmail() {
return submitUserEmail;
}
/**
* Sets the value of the submitUserEmail property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubmitUserEmail(String value) {
this.submitUserEmail = value;
}
/**
* Gets the value of the logType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLogType() {
return logType;
}
/**
* Sets the value of the logType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLogType(String value) {
this.logType = value;
}
/**
* Gets the value of the jobSubType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobSubType() {
return jobSubType;
}
/**
* Sets the value of the jobSubType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJobSubType(String value) {
this.jobSubType = value;
}
/**
* Gets the value of the startDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStartDate() {
return startDate;
}
/**
* Sets the value of the startDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStartDate(XMLGregorianCalendar value) {
this.startDate = value;
}
/**
* Gets the value of the endDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEndDate() {
return endDate;
}
/**
* Sets the value of the endDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEndDate(XMLGregorianCalendar value) {
this.endDate = 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 fileSuccessCount property.
*
*/
public int getFileSuccessCount() {
return fileSuccessCount;
}
/**
* Sets the value of the fileSuccessCount property.
*
*/
public void setFileSuccessCount(int value) {
this.fileSuccessCount = value;
}
/**
* Gets the value of the fileErrorCount property.
*
*/
public int getFileErrorCount() {
return fileErrorCount;
}
/**
* Sets the value of the fileErrorCount property.
*
*/
public void setFileErrorCount(int value) {
this.fileErrorCount = value;
}
/**
* Gets the value of the fileWarningCount property.
*
*/
public int getFileWarningCount() {
return fileWarningCount;
}
/**
* Sets the value of the fileWarningCount property.
*
*/
public void setFileWarningCount(int value) {
this.fileWarningCount = value;
}
/**
* Gets the value of the fileDuplicateCount property.
*
*/
public int getFileDuplicateCount() {
return fileDuplicateCount;
}
/**
* Sets the value of the fileDuplicateCount property.
*
*/
public void setFileDuplicateCount(int value) {
this.fileDuplicateCount = value;
}
/**
* Gets the value of the fileUpdateCount property.
*
*/
public int getFileUpdateCount() {
return fileUpdateCount;
}
/**
* Sets the value of the fileUpdateCount property.
*
*/
public void setFileUpdateCount(int value) {
this.fileUpdateCount = value;
}
/**
* Gets the value of the totalFileCount property.
*
*/
public int getTotalFileCount() {
return totalFileCount;
}
/**
* Sets the value of the totalFileCount property.
*
*/
public void setTotalFileCount(int value) {
this.totalFileCount = value;
}
/**
* Gets the value of the transferSuccessCount property.
*
*/
public int getTransferSuccessCount() {
return transferSuccessCount;
}
/**
* Sets the value of the transferSuccessCount property.
*
*/
public void setTransferSuccessCount(int value) {
this.transferSuccessCount = value;
}
/**
* Gets the value of the transferErrorCount property.
*
*/
public int getTransferErrorCount() {
return transferErrorCount;
}
/**
* Sets the value of the transferErrorCount property.
*
*/
public void setTransferErrorCount(int value) {
this.transferErrorCount = value;
}
/**
* Gets the value of the transferWarningCount property.
*
*/
public int getTransferWarningCount() {
return transferWarningCount;
}
/**
* Sets the value of the transferWarningCount property.
*
*/
public void setTransferWarningCount(int value) {
this.transferWarningCount = value;
}
/**
* Gets the value of the fatalError property.
*
*/
public boolean isFatalError() {
return fatalError;
}
/**
* Sets the value of the fatalError property.
*
*/
public void setFatalError(boolean value) {
this.fatalError = value;
}
/**
* Gets the value of the detailTotalRows property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDetailTotalRows() {
return detailTotalRows;
}
/**
* Sets the value of the detailTotalRows property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDetailTotalRows(Integer value) {
this.detailTotalRows = value;
}
/**
* Gets the value of the detailArray property.
*
* @return
* possible object is
* {@link JobLogDetailArray }
*
*/
public JobLogDetailArray getDetailArray() {
return detailArray;
}
/**
* Sets the value of the detailArray property.
*
* @param value
* allowed object is
* {@link JobLogDetailArray }
*
*/
public void setDetailArray(JobLogDetailArray value) {
this.detailArray = value;
}
}