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

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

//
// 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 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/2017-10-29-beta}JobLogDetailArray" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JobLog", 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(required = true) protected String companyHandle; @XmlElement(required = true) protected String jobHandle; @XmlElement(required = true) protected String jobName; @XmlElement(required = true) protected String originalJobName; @XmlElement(required = true) protected String submitUserEmail; @XmlElement(required = true) protected String logType; @XmlElement(required = true) protected String jobSubType; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar startDate; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar endDate; @XmlElement(required = true) protected String description; protected int fileSuccessCount; protected int fileErrorCount; protected int fileWarningCount; protected int fileDuplicateCount; protected int fileUpdateCount; protected int totalFileCount; protected int transferSuccessCount; protected int transferErrorCount; protected int transferWarningCount; protected boolean fatalError; protected Integer detailTotalRows; 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy