com.scene7.ipsapi.AssetJobLog 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for AssetJobLog complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AssetJobLog">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="jobHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="jobName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="logMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="logType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="submitUserEmail" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="logDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="auxArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}JobLogDetailAuxArray" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AssetJobLog", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"jobHandle",
"jobName",
"logMessage",
"logType",
"submitUserEmail",
"logDate",
"auxArray"
})
public class AssetJobLog {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String jobHandle;
@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", required = true)
protected String logMessage;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String logType;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String submitUserEmail;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar logDate;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected JobLogDetailAuxArray auxArray;
/**
* 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 logMessage property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLogMessage() {
return logMessage;
}
/**
* Sets the value of the logMessage property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLogMessage(String value) {
this.logMessage = 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 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 logDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLogDate() {
return logDate;
}
/**
* Sets the value of the logDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLogDate(XMLGregorianCalendar value) {
this.logDate = value;
}
/**
* Gets the value of the auxArray property.
*
* @return
* possible object is
* {@link JobLogDetailAuxArray }
*
*/
public JobLogDetailAuxArray getAuxArray() {
return auxArray;
}
/**
* Sets the value of the auxArray property.
*
* @param value
* allowed object is
* {@link JobLogDetailAuxArray }
*
*/
public void setAuxArray(JobLogDetailAuxArray value) {
this.auxArray = value;
}
}