com.sforce.soap.tooling.DescribeGlobalSObjectResult 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.XmlType;
/**
* Java class for DescribeGlobalSObjectResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescribeGlobalSObjectResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="activateable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="createable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="custom" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="customSetting" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="deletable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="deprecatedAndHidden" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="feedEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="keyPrefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="labelPlural" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="layoutable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="mergeable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="queryable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="replicateable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="retrieveable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="searchable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="triggerable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="undeletable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="updateable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescribeGlobalSObjectResult", propOrder = {
"activateable",
"createable",
"custom",
"customSetting",
"deletable",
"deprecatedAndHidden",
"feedEnabled",
"keyPrefix",
"label",
"labelPlural",
"layoutable",
"mergeable",
"name",
"queryable",
"replicateable",
"retrieveable",
"searchable",
"triggerable",
"undeletable",
"updateable"
})
public class DescribeGlobalSObjectResult {
protected boolean activateable;
protected boolean createable;
protected boolean custom;
protected boolean customSetting;
protected boolean deletable;
protected boolean deprecatedAndHidden;
protected boolean feedEnabled;
@XmlElement(required = true)
protected String keyPrefix;
@XmlElement(required = true)
protected String label;
@XmlElement(required = true)
protected String labelPlural;
protected boolean layoutable;
protected boolean mergeable;
@XmlElement(required = true)
protected String name;
protected boolean queryable;
protected boolean replicateable;
protected boolean retrieveable;
protected boolean searchable;
protected boolean triggerable;
protected boolean undeletable;
protected boolean updateable;
/**
* Gets the value of the activateable property.
*
*/
public boolean isActivateable() {
return activateable;
}
/**
* Sets the value of the activateable property.
*
*/
public void setActivateable(boolean value) {
this.activateable = value;
}
/**
* Gets the value of the createable property.
*
*/
public boolean isCreateable() {
return createable;
}
/**
* Sets the value of the createable property.
*
*/
public void setCreateable(boolean value) {
this.createable = value;
}
/**
* Gets the value of the custom property.
*
*/
public boolean isCustom() {
return custom;
}
/**
* Sets the value of the custom property.
*
*/
public void setCustom(boolean value) {
this.custom = value;
}
/**
* Gets the value of the customSetting property.
*
*/
public boolean isCustomSetting() {
return customSetting;
}
/**
* Sets the value of the customSetting property.
*
*/
public void setCustomSetting(boolean value) {
this.customSetting = value;
}
/**
* Gets the value of the deletable property.
*
*/
public boolean isDeletable() {
return deletable;
}
/**
* Sets the value of the deletable property.
*
*/
public void setDeletable(boolean value) {
this.deletable = value;
}
/**
* Gets the value of the deprecatedAndHidden property.
*
*/
public boolean isDeprecatedAndHidden() {
return deprecatedAndHidden;
}
/**
* Sets the value of the deprecatedAndHidden property.
*
*/
public void setDeprecatedAndHidden(boolean value) {
this.deprecatedAndHidden = value;
}
/**
* Gets the value of the feedEnabled property.
*
*/
public boolean isFeedEnabled() {
return feedEnabled;
}
/**
* Sets the value of the feedEnabled property.
*
*/
public void setFeedEnabled(boolean value) {
this.feedEnabled = value;
}
/**
* Gets the value of the keyPrefix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeyPrefix() {
return keyPrefix;
}
/**
* Sets the value of the keyPrefix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKeyPrefix(String value) {
this.keyPrefix = value;
}
/**
* Gets the value of the label property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Gets the value of the labelPlural property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabelPlural() {
return labelPlural;
}
/**
* Sets the value of the labelPlural property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabelPlural(String value) {
this.labelPlural = value;
}
/**
* Gets the value of the layoutable property.
*
*/
public boolean isLayoutable() {
return layoutable;
}
/**
* Sets the value of the layoutable property.
*
*/
public void setLayoutable(boolean value) {
this.layoutable = value;
}
/**
* Gets the value of the mergeable property.
*
*/
public boolean isMergeable() {
return mergeable;
}
/**
* Sets the value of the mergeable property.
*
*/
public void setMergeable(boolean value) {
this.mergeable = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the queryable property.
*
*/
public boolean isQueryable() {
return queryable;
}
/**
* Sets the value of the queryable property.
*
*/
public void setQueryable(boolean value) {
this.queryable = value;
}
/**
* Gets the value of the replicateable property.
*
*/
public boolean isReplicateable() {
return replicateable;
}
/**
* Sets the value of the replicateable property.
*
*/
public void setReplicateable(boolean value) {
this.replicateable = value;
}
/**
* Gets the value of the retrieveable property.
*
*/
public boolean isRetrieveable() {
return retrieveable;
}
/**
* Sets the value of the retrieveable property.
*
*/
public void setRetrieveable(boolean value) {
this.retrieveable = value;
}
/**
* Gets the value of the searchable property.
*
*/
public boolean isSearchable() {
return searchable;
}
/**
* Sets the value of the searchable property.
*
*/
public void setSearchable(boolean value) {
this.searchable = value;
}
/**
* Gets the value of the triggerable property.
*
*/
public boolean isTriggerable() {
return triggerable;
}
/**
* Sets the value of the triggerable property.
*
*/
public void setTriggerable(boolean value) {
this.triggerable = value;
}
/**
* Gets the value of the undeletable property.
*
*/
public boolean isUndeletable() {
return undeletable;
}
/**
* Sets the value of the undeletable property.
*
*/
public void setUndeletable(boolean value) {
this.undeletable = value;
}
/**
* Gets the value of the updateable property.
*
*/
public boolean isUpdateable() {
return updateable;
}
/**
* Sets the value of the updateable property.
*
*/
public void setUpdateable(boolean value) {
this.updateable = value;
}
}