com.sforce.soap.tooling.ContainerAsyncRequest 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 ContainerAsyncRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ContainerAsyncRequest">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}sObject">
* <sequence>
* <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="DeployDetails" type="{urn:tooling.soap.sforce.com}DeployDetails" minOccurs="0"/>
* <element name="ErrorMsg" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="IsCheckOnly" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="IsDeleted" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="IsRunTests" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="LastModifiedBy" type="{urn:tooling.soap.sforce.com}User" minOccurs="0"/>
* <element name="LastModifiedById" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="LastModifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="MetadataContainer" type="{urn:tooling.soap.sforce.com}MetadataContainer" minOccurs="0"/>
* <element name="MetadataContainerId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="MetadataContainerMember" type="{urn:tooling.soap.sforce.com}sObject" minOccurs="0"/>
* <element name="MetadataContainerMemberId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="State" 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 = "ContainerAsyncRequest", propOrder = {
"createdBy",
"createdById",
"createdDate",
"deployDetails",
"errorMsg",
"isCheckOnly",
"isDeleted",
"isRunTests",
"lastModifiedBy",
"lastModifiedById",
"lastModifiedDate",
"metadataContainer",
"metadataContainerId",
"metadataContainerMember",
"metadataContainerMemberId",
"state",
"systemModstamp"
})
public class ContainerAsyncRequest
extends SObject
{
@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 = "DeployDetails", nillable = true)
protected DeployDetails deployDetails;
@XmlElement(name = "ErrorMsg", nillable = true)
protected String errorMsg;
@XmlElement(name = "IsCheckOnly", nillable = true)
protected Boolean isCheckOnly;
@XmlElement(name = "IsDeleted", nillable = true)
protected Boolean isDeleted;
@XmlElement(name = "IsRunTests", nillable = true)
protected Boolean isRunTests;
@XmlElement(name = "LastModifiedBy", nillable = true)
protected User lastModifiedBy;
@XmlElement(name = "LastModifiedById", nillable = true)
protected String lastModifiedById;
@XmlElement(name = "LastModifiedDate", nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastModifiedDate;
@XmlElement(name = "MetadataContainer", nillable = true)
protected MetadataContainer metadataContainer;
@XmlElement(name = "MetadataContainerId", nillable = true)
protected String metadataContainerId;
@XmlElement(name = "MetadataContainerMember", nillable = true)
protected SObject metadataContainerMember;
@XmlElement(name = "MetadataContainerMemberId", nillable = true)
protected String metadataContainerMemberId;
@XmlElement(name = "State", nillable = true)
protected String state;
@XmlElement(name = "SystemModstamp", nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar systemModstamp;
/**
* 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 deployDetails property.
*
* @return
* possible object is
* {@link DeployDetails }
*
*/
public DeployDetails getDeployDetails() {
return deployDetails;
}
/**
* Sets the value of the deployDetails property.
*
* @param value
* allowed object is
* {@link DeployDetails }
*
*/
public void setDeployDetails(DeployDetails value) {
this.deployDetails = value;
}
/**
* Gets the value of the errorMsg property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getErrorMsg() {
return errorMsg;
}
/**
* Sets the value of the errorMsg property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setErrorMsg(String value) {
this.errorMsg = value;
}
/**
* Gets the value of the isCheckOnly property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsCheckOnly() {
return isCheckOnly;
}
/**
* Sets the value of the isCheckOnly property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsCheckOnly(Boolean value) {
this.isCheckOnly = value;
}
/**
* Gets the value of the isDeleted property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsDeleted() {
return isDeleted;
}
/**
* Sets the value of the isDeleted property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsDeleted(Boolean value) {
this.isDeleted = value;
}
/**
* Gets the value of the isRunTests property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsRunTests() {
return isRunTests;
}
/**
* Sets the value of the isRunTests property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsRunTests(Boolean value) {
this.isRunTests = value;
}
/**
* Gets the value of the lastModifiedBy property.
*
* @return
* possible object is
* {@link User }
*
*/
public User getLastModifiedBy() {
return lastModifiedBy;
}
/**
* Sets the value of the lastModifiedBy property.
*
* @param value
* allowed object is
* {@link User }
*
*/
public void setLastModifiedBy(User value) {
this.lastModifiedBy = value;
}
/**
* Gets the value of the lastModifiedById property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastModifiedById() {
return lastModifiedById;
}
/**
* Sets the value of the lastModifiedById property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastModifiedById(String value) {
this.lastModifiedById = value;
}
/**
* Gets the value of the lastModifiedDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastModifiedDate() {
return lastModifiedDate;
}
/**
* Sets the value of the lastModifiedDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastModifiedDate(XMLGregorianCalendar value) {
this.lastModifiedDate = value;
}
/**
* Gets the value of the metadataContainer property.
*
* @return
* possible object is
* {@link MetadataContainer }
*
*/
public MetadataContainer getMetadataContainer() {
return metadataContainer;
}
/**
* Sets the value of the metadataContainer property.
*
* @param value
* allowed object is
* {@link MetadataContainer }
*
*/
public void setMetadataContainer(MetadataContainer value) {
this.metadataContainer = value;
}
/**
* Gets the value of the metadataContainerId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMetadataContainerId() {
return metadataContainerId;
}
/**
* Sets the value of the metadataContainerId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMetadataContainerId(String value) {
this.metadataContainerId = value;
}
/**
* Gets the value of the metadataContainerMember property.
*
* @return
* possible object is
* {@link SObject }
*
*/
public SObject getMetadataContainerMember() {
return metadataContainerMember;
}
/**
* Sets the value of the metadataContainerMember property.
*
* @param value
* allowed object is
* {@link SObject }
*
*/
public void setMetadataContainerMember(SObject value) {
this.metadataContainerMember = value;
}
/**
* Gets the value of the metadataContainerMemberId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMetadataContainerMemberId() {
return metadataContainerMemberId;
}
/**
* Sets the value of the metadataContainerMemberId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMetadataContainerMemberId(String value) {
this.metadataContainerMemberId = value;
}
/**
* Gets the value of the state property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getState() {
return state;
}
/**
* Sets the value of the state property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setState(String value) {
this.state = 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;
}
}