Class JobLog


  • public class JobLog
    extends java.lang.Object

    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>
     
    • Constructor Summary

      Constructors 
      Constructor Description
      JobLog()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getCompanyHandle()
      Gets the value of the companyHandle property.
      java.lang.String getDescription()
      Gets the value of the description property.
      JobLogDetailArray getDetailArray()
      Gets the value of the detailArray property.
      java.lang.Integer getDetailTotalRows()
      Gets the value of the detailTotalRows property.
      javax.xml.datatype.XMLGregorianCalendar getEndDate()
      Gets the value of the endDate property.
      int getFileDuplicateCount()
      Gets the value of the fileDuplicateCount property.
      int getFileErrorCount()
      Gets the value of the fileErrorCount property.
      int getFileSuccessCount()
      Gets the value of the fileSuccessCount property.
      int getFileUpdateCount()
      Gets the value of the fileUpdateCount property.
      int getFileWarningCount()
      Gets the value of the fileWarningCount property.
      java.lang.String getJobHandle()
      Gets the value of the jobHandle property.
      java.lang.String getJobName()
      Gets the value of the jobName property.
      java.lang.String getJobSubType()
      Gets the value of the jobSubType property.
      java.lang.String getLogType()
      Gets the value of the logType property.
      java.lang.String getOriginalJobName()
      Gets the value of the originalJobName property.
      javax.xml.datatype.XMLGregorianCalendar getStartDate()
      Gets the value of the startDate property.
      java.lang.String getSubmitUserEmail()
      Gets the value of the submitUserEmail property.
      int getTotalFileCount()
      Gets the value of the totalFileCount property.
      int getTransferErrorCount()
      Gets the value of the transferErrorCount property.
      int getTransferSuccessCount()
      Gets the value of the transferSuccessCount property.
      int getTransferWarningCount()
      Gets the value of the transferWarningCount property.
      boolean isFatalError()
      Gets the value of the fatalError property.
      void setCompanyHandle​(java.lang.String value)
      Sets the value of the companyHandle property.
      void setDescription​(java.lang.String value)
      Sets the value of the description property.
      void setDetailArray​(JobLogDetailArray value)
      Sets the value of the detailArray property.
      void setDetailTotalRows​(java.lang.Integer value)
      Sets the value of the detailTotalRows property.
      void setEndDate​(javax.xml.datatype.XMLGregorianCalendar value)
      Sets the value of the endDate property.
      void setFatalError​(boolean value)
      Sets the value of the fatalError property.
      void setFileDuplicateCount​(int value)
      Sets the value of the fileDuplicateCount property.
      void setFileErrorCount​(int value)
      Sets the value of the fileErrorCount property.
      void setFileSuccessCount​(int value)
      Sets the value of the fileSuccessCount property.
      void setFileUpdateCount​(int value)
      Sets the value of the fileUpdateCount property.
      void setFileWarningCount​(int value)
      Sets the value of the fileWarningCount property.
      void setJobHandle​(java.lang.String value)
      Sets the value of the jobHandle property.
      void setJobName​(java.lang.String value)
      Sets the value of the jobName property.
      void setJobSubType​(java.lang.String value)
      Sets the value of the jobSubType property.
      void setLogType​(java.lang.String value)
      Sets the value of the logType property.
      void setOriginalJobName​(java.lang.String value)
      Sets the value of the originalJobName property.
      void setStartDate​(javax.xml.datatype.XMLGregorianCalendar value)
      Sets the value of the startDate property.
      void setSubmitUserEmail​(java.lang.String value)
      Sets the value of the submitUserEmail property.
      void setTotalFileCount​(int value)
      Sets the value of the totalFileCount property.
      void setTransferErrorCount​(int value)
      Sets the value of the transferErrorCount property.
      void setTransferSuccessCount​(int value)
      Sets the value of the transferSuccessCount property.
      void setTransferWarningCount​(int value)
      Sets the value of the transferWarningCount property.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • JobLog

        public JobLog()
    • Method Detail

      • getCompanyHandle

        public java.lang.String getCompanyHandle()
        Gets the value of the companyHandle property.
        Returns:
        possible object is String
      • setCompanyHandle

        public void setCompanyHandle​(java.lang.String value)
        Sets the value of the companyHandle property.
        Parameters:
        value - allowed object is String
      • getJobHandle

        public java.lang.String getJobHandle()
        Gets the value of the jobHandle property.
        Returns:
        possible object is String
      • setJobHandle

        public void setJobHandle​(java.lang.String value)
        Sets the value of the jobHandle property.
        Parameters:
        value - allowed object is String
      • getJobName

        public java.lang.String getJobName()
        Gets the value of the jobName property.
        Returns:
        possible object is String
      • setJobName

        public void setJobName​(java.lang.String value)
        Sets the value of the jobName property.
        Parameters:
        value - allowed object is String
      • getOriginalJobName

        public java.lang.String getOriginalJobName()
        Gets the value of the originalJobName property.
        Returns:
        possible object is String
      • setOriginalJobName

        public void setOriginalJobName​(java.lang.String value)
        Sets the value of the originalJobName property.
        Parameters:
        value - allowed object is String
      • getSubmitUserEmail

        public java.lang.String getSubmitUserEmail()
        Gets the value of the submitUserEmail property.
        Returns:
        possible object is String
      • setSubmitUserEmail

        public void setSubmitUserEmail​(java.lang.String value)
        Sets the value of the submitUserEmail property.
        Parameters:
        value - allowed object is String
      • getLogType

        public java.lang.String getLogType()
        Gets the value of the logType property.
        Returns:
        possible object is String
      • setLogType

        public void setLogType​(java.lang.String value)
        Sets the value of the logType property.
        Parameters:
        value - allowed object is String
      • getJobSubType

        public java.lang.String getJobSubType()
        Gets the value of the jobSubType property.
        Returns:
        possible object is String
      • setJobSubType

        public void setJobSubType​(java.lang.String value)
        Sets the value of the jobSubType property.
        Parameters:
        value - allowed object is String
      • getStartDate

        public javax.xml.datatype.XMLGregorianCalendar getStartDate()
        Gets the value of the startDate property.
        Returns:
        possible object is XMLGregorianCalendar
      • setStartDate

        public void setStartDate​(javax.xml.datatype.XMLGregorianCalendar value)
        Sets the value of the startDate property.
        Parameters:
        value - allowed object is XMLGregorianCalendar
      • getEndDate

        public javax.xml.datatype.XMLGregorianCalendar getEndDate()
        Gets the value of the endDate property.
        Returns:
        possible object is XMLGregorianCalendar
      • setEndDate

        public void setEndDate​(javax.xml.datatype.XMLGregorianCalendar value)
        Sets the value of the endDate property.
        Parameters:
        value - allowed object is XMLGregorianCalendar
      • getDescription

        public java.lang.String getDescription()
        Gets the value of the description property.
        Returns:
        possible object is String
      • setDescription

        public void setDescription​(java.lang.String value)
        Sets the value of the description property.
        Parameters:
        value - allowed object is String
      • getFileSuccessCount

        public int getFileSuccessCount()
        Gets the value of the fileSuccessCount property.
      • setFileSuccessCount

        public void setFileSuccessCount​(int value)
        Sets the value of the fileSuccessCount property.
      • getFileErrorCount

        public int getFileErrorCount()
        Gets the value of the fileErrorCount property.
      • setFileErrorCount

        public void setFileErrorCount​(int value)
        Sets the value of the fileErrorCount property.
      • getFileWarningCount

        public int getFileWarningCount()
        Gets the value of the fileWarningCount property.
      • setFileWarningCount

        public void setFileWarningCount​(int value)
        Sets the value of the fileWarningCount property.
      • getFileDuplicateCount

        public int getFileDuplicateCount()
        Gets the value of the fileDuplicateCount property.
      • setFileDuplicateCount

        public void setFileDuplicateCount​(int value)
        Sets the value of the fileDuplicateCount property.
      • getFileUpdateCount

        public int getFileUpdateCount()
        Gets the value of the fileUpdateCount property.
      • setFileUpdateCount

        public void setFileUpdateCount​(int value)
        Sets the value of the fileUpdateCount property.
      • getTotalFileCount

        public int getTotalFileCount()
        Gets the value of the totalFileCount property.
      • setTotalFileCount

        public void setTotalFileCount​(int value)
        Sets the value of the totalFileCount property.
      • getTransferSuccessCount

        public int getTransferSuccessCount()
        Gets the value of the transferSuccessCount property.
      • setTransferSuccessCount

        public void setTransferSuccessCount​(int value)
        Sets the value of the transferSuccessCount property.
      • getTransferErrorCount

        public int getTransferErrorCount()
        Gets the value of the transferErrorCount property.
      • setTransferErrorCount

        public void setTransferErrorCount​(int value)
        Sets the value of the transferErrorCount property.
      • getTransferWarningCount

        public int getTransferWarningCount()
        Gets the value of the transferWarningCount property.
      • setTransferWarningCount

        public void setTransferWarningCount​(int value)
        Sets the value of the transferWarningCount property.
      • isFatalError

        public boolean isFatalError()
        Gets the value of the fatalError property.
      • setFatalError

        public void setFatalError​(boolean value)
        Sets the value of the fatalError property.
      • getDetailTotalRows

        public java.lang.Integer getDetailTotalRows()
        Gets the value of the detailTotalRows property.
        Returns:
        possible object is Integer
      • setDetailTotalRows

        public void setDetailTotalRows​(java.lang.Integer value)
        Sets the value of the detailTotalRows property.
        Parameters:
        value - allowed object is Integer
      • setDetailArray

        public void setDetailArray​(JobLogDetailArray value)
        Sets the value of the detailArray property.
        Parameters:
        value - allowed object is JobLogDetailArray