![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.tooling.CustomObject 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 CustomObject complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomObject">
* <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="CustomHelpId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="DeveloperName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ExternalDataSource" type="{urn:tooling.soap.sforce.com}sObject" minOccurs="0"/>
* <element name="ExternalDataSourceId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="ExternalName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ExternalRepository" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" 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="ManageableState" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="NamespacePrefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="SharingModel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomObject", propOrder = {
"createdBy",
"createdById",
"createdDate",
"customHelpId",
"description",
"developerName",
"externalDataSource",
"externalDataSourceId",
"externalName",
"externalRepository",
"language",
"lastModifiedBy",
"lastModifiedById",
"lastModifiedDate",
"manageableState",
"namespacePrefix",
"sharingModel"
})
public class CustomObject
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 = "CustomHelpId", nillable = true)
protected String customHelpId;
@XmlElement(name = "Description", nillable = true)
protected String description;
@XmlElement(name = "DeveloperName", nillable = true)
protected String developerName;
@XmlElement(name = "ExternalDataSource", nillable = true)
protected SObject externalDataSource;
@XmlElement(name = "ExternalDataSourceId", nillable = true)
protected String externalDataSourceId;
@XmlElement(name = "ExternalName", nillable = true)
protected String externalName;
@XmlElement(name = "ExternalRepository", nillable = true)
protected String externalRepository;
@XmlElement(name = "Language", nillable = true)
protected String language;
@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 = "ManageableState", nillable = true)
protected String manageableState;
@XmlElement(name = "NamespacePrefix", nillable = true)
protected String namespacePrefix;
@XmlElement(name = "SharingModel", nillable = true)
protected String sharingModel;
/**
* 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 customHelpId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomHelpId() {
return customHelpId;
}
/**
* Sets the value of the customHelpId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomHelpId(String value) {
this.customHelpId = 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 developerName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDeveloperName() {
return developerName;
}
/**
* Sets the value of the developerName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDeveloperName(String value) {
this.developerName = value;
}
/**
* Gets the value of the externalDataSource property.
*
* @return
* possible object is
* {@link SObject }
*
*/
public SObject getExternalDataSource() {
return externalDataSource;
}
/**
* Sets the value of the externalDataSource property.
*
* @param value
* allowed object is
* {@link SObject }
*
*/
public void setExternalDataSource(SObject value) {
this.externalDataSource = value;
}
/**
* Gets the value of the externalDataSourceId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExternalDataSourceId() {
return externalDataSourceId;
}
/**
* Sets the value of the externalDataSourceId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExternalDataSourceId(String value) {
this.externalDataSourceId = value;
}
/**
* Gets the value of the externalName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExternalName() {
return externalName;
}
/**
* Sets the value of the externalName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExternalName(String value) {
this.externalName = value;
}
/**
* Gets the value of the externalRepository property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExternalRepository() {
return externalRepository;
}
/**
* Sets the value of the externalRepository property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExternalRepository(String value) {
this.externalRepository = value;
}
/**
* Gets the value of the language property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguage() {
return language;
}
/**
* Sets the value of the language property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguage(String value) {
this.language = 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 manageableState property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getManageableState() {
return manageableState;
}
/**
* Sets the value of the manageableState property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setManageableState(String value) {
this.manageableState = value;
}
/**
* Gets the value of the namespacePrefix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNamespacePrefix() {
return namespacePrefix;
}
/**
* Sets the value of the namespacePrefix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNamespacePrefix(String value) {
this.namespacePrefix = value;
}
/**
* Gets the value of the sharingModel property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSharingModel() {
return sharingModel;
}
/**
* Sets the value of the sharingModel property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSharingModel(String value) {
this.sharingModel = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy