All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scene7.ipsapi.JobLogDetail Maven / Gradle / Ivy

There is a newer version: 6.5.21
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


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/2017-10-29-beta}JobLogDetailAuxArray" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JobLogDetail", propOrder = { "logMessage", "logType", "dateCreated", "assetName", "assetType", "assetHandle", "auxArray" }) public class JobLogDetail { @XmlElement(required = true) protected String logMessage; @XmlElement(required = true) protected String logType; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dateCreated; protected String assetName; protected String assetType; protected String assetHandle; 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy