
com.adlibsoftware.client.JobSvcStatistics Maven / Gradle / Ivy
package com.adlibsoftware.client;
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 JobSvcStatistics complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="JobSvcStatistics">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="SubmittedTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="StartedTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="ProcessedTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="CompletedTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "JobSvcStatistics", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", propOrder = {
"submittedTime",
"startedTime",
"processedTime",
"completedTime"
})
public class JobSvcStatistics {
@XmlElement(name = "SubmittedTime", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar submittedTime;
@XmlElement(name = "StartedTime", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startedTime;
@XmlElement(name = "ProcessedTime", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar processedTime;
@XmlElement(name = "CompletedTime", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar completedTime;
/**
* Gets the value of the submittedTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getSubmittedTime() {
return submittedTime;
}
/**
* Sets the value of the submittedTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setSubmittedTime(XMLGregorianCalendar value) {
this.submittedTime = value;
}
/**
* Gets the value of the startedTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStartedTime() {
return startedTime;
}
/**
* Sets the value of the startedTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStartedTime(XMLGregorianCalendar value) {
this.startedTime = value;
}
/**
* Gets the value of the processedTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getProcessedTime() {
return processedTime;
}
/**
* Sets the value of the processedTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setProcessedTime(XMLGregorianCalendar value) {
this.processedTime = value;
}
/**
* Gets the value of the completedTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCompletedTime() {
return completedTime;
}
/**
* Sets the value of the completedTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCompletedTime(XMLGregorianCalendar value) {
this.completedTime = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy