com.sforce.soap.tooling.ApexTestQueueItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
The newest version!
package com.sforce.soap.tooling;
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 ApexTestQueueItem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ApexTestQueueItem">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}sObject">
* <sequence>
* <element name="ApexClass" type="{urn:tooling.soap.sforce.com}ApexClass" minOccurs="0"/>
* <element name="ApexClassId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="CreatedBy" type="{urn:tooling.soap.sforce.com}User" minOccurs="0"/>
* <element name="CreatedById" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="CreatedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="ExtendedStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ParentJobId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="Status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="SystemModstamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ApexTestQueueItem", propOrder = {
"apexClass",
"apexClassId",
"createdBy",
"createdById",
"createdDate",
"extendedStatus",
"parentJobId",
"status",
"systemModstamp"
})
public class ApexTestQueueItem
extends SObject
{
@XmlElement(name = "ApexClass", nillable = true)
protected ApexClass apexClass;
@XmlElement(name = "ApexClassId", nillable = true)
protected String apexClassId;
@XmlElement(name = "CreatedBy", nillable = true)
protected User createdBy;
@XmlElement(name = "CreatedById", nillable = true)
protected String createdById;
@XmlElement(name = "CreatedDate", nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar createdDate;
@XmlElement(name = "ExtendedStatus", nillable = true)
protected String extendedStatus;
@XmlElement(name = "ParentJobId", nillable = true)
protected String parentJobId;
@XmlElement(name = "Status", nillable = true)
protected String status;
@XmlElement(name = "SystemModstamp", nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar systemModstamp;
/**
* Gets the value of the apexClass property.
*
* @return
* possible object is
* {@link ApexClass }
*
*/
public ApexClass getApexClass() {
return apexClass;
}
/**
* Sets the value of the apexClass property.
*
* @param value
* allowed object is
* {@link ApexClass }
*
*/
public void setApexClass(ApexClass value) {
this.apexClass = value;
}
/**
* Gets the value of the apexClassId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getApexClassId() {
return apexClassId;
}
/**
* Sets the value of the apexClassId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setApexClassId(String value) {
this.apexClassId = value;
}
/**
* Gets the value of the createdBy property.
*
* @return
* possible object is
* {@link User }
*
*/
public User getCreatedBy() {
return createdBy;
}
/**
* Sets the value of the createdBy property.
*
* @param value
* allowed object is
* {@link User }
*
*/
public void setCreatedBy(User value) {
this.createdBy = value;
}
/**
* Gets the value of the createdById property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreatedById() {
return createdById;
}
/**
* Sets the value of the createdById property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreatedById(String value) {
this.createdById = value;
}
/**
* Gets the value of the createdDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreatedDate() {
return createdDate;
}
/**
* Sets the value of the createdDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCreatedDate(XMLGregorianCalendar value) {
this.createdDate = value;
}
/**
* Gets the value of the extendedStatus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExtendedStatus() {
return extendedStatus;
}
/**
* Sets the value of the extendedStatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExtendedStatus(String value) {
this.extendedStatus = value;
}
/**
* Gets the value of the parentJobId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getParentJobId() {
return parentJobId;
}
/**
* Sets the value of the parentJobId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setParentJobId(String value) {
this.parentJobId = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatus(String value) {
this.status = value;
}
/**
* Gets the value of the systemModstamp property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getSystemModstamp() {
return systemModstamp;
}
/**
* Sets the value of the systemModstamp property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setSystemModstamp(XMLGregorianCalendar value) {
this.systemModstamp = value;
}
}