com.scene7.ipsapi.JobLogDetail 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 JobLogDetail complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="JobLogDetail">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="logMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="logType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="assetName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="assetType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="assetHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <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 = "JobLogDetail", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"logMessage",
"logType",
"dateCreated",
"assetName",
"assetType",
"assetHandle",
"auxArray"
})
public class JobLogDetail {
@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)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dateCreated;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String assetName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String assetType;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String assetHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected JobLogDetailAuxArray auxArray;
/**
* 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 dateCreated property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDateCreated() {
return dateCreated;
}
/**
* Sets the value of the dateCreated property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDateCreated(XMLGregorianCalendar value) {
this.dateCreated = value;
}
/**
* Gets the value of the assetName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAssetName() {
return assetName;
}
/**
* Sets the value of the assetName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAssetName(String value) {
this.assetName = value;
}
/**
* Gets the value of the assetType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAssetType() {
return assetType;
}
/**
* Sets the value of the assetType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAssetType(String value) {
this.assetType = value;
}
/**
* Gets the value of the assetHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAssetHandle() {
return assetHandle;
}
/**
* Sets the value of the assetHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAssetHandle(String value) {
this.assetHandle = 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;
}
}