com.sforce.soap.tooling.UserEntityAccess 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 UserEntityAccess complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="UserEntityAccess">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}sObject">
* <sequence>
* <element name="DurableId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="EntityDefinition" type="{urn:tooling.soap.sforce.com}EntityDefinition" minOccurs="0"/>
* <element name="EntityDefinitionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="IsActivateable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="IsCreatable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="IsDeletable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="IsEditable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="IsFlsUpdatable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="IsMergeable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="IsReadable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="IsUndeletable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="IsUpdatable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="User" type="{urn:tooling.soap.sforce.com}User" minOccurs="0"/>
* <element name="UserId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UserEntityAccess", propOrder = {
"durableId",
"entityDefinition",
"entityDefinitionId",
"isActivateable",
"isCreatable",
"isDeletable",
"isEditable",
"isFlsUpdatable",
"isMergeable",
"isReadable",
"isUndeletable",
"isUpdatable",
"user",
"userId"
})
public class UserEntityAccess
extends SObject
{
@XmlElement(name = "DurableId", nillable = true)
protected String durableId;
@XmlElement(name = "EntityDefinition", nillable = true)
protected EntityDefinition entityDefinition;
@XmlElement(name = "EntityDefinitionId", nillable = true)
protected String entityDefinitionId;
@XmlElement(name = "IsActivateable", nillable = true)
protected Boolean isActivateable;
@XmlElement(name = "IsCreatable", nillable = true)
protected Boolean isCreatable;
@XmlElement(name = "IsDeletable", nillable = true)
protected Boolean isDeletable;
@XmlElement(name = "IsEditable", nillable = true)
protected Boolean isEditable;
@XmlElement(name = "IsFlsUpdatable", nillable = true)
protected Boolean isFlsUpdatable;
@XmlElement(name = "IsMergeable", nillable = true)
protected Boolean isMergeable;
@XmlElement(name = "IsReadable", nillable = true)
protected Boolean isReadable;
@XmlElement(name = "IsUndeletable", nillable = true)
protected Boolean isUndeletable;
@XmlElement(name = "IsUpdatable", nillable = true)
protected Boolean isUpdatable;
@XmlElement(name = "User", nillable = true)
protected User user;
@XmlElement(name = "UserId", nillable = true)
protected String userId;
/**
* Gets the value of the durableId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDurableId() {
return durableId;
}
/**
* Sets the value of the durableId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDurableId(String value) {
this.durableId = value;
}
/**
* Gets the value of the entityDefinition property.
*
* @return
* possible object is
* {@link EntityDefinition }
*
*/
public EntityDefinition getEntityDefinition() {
return entityDefinition;
}
/**
* Sets the value of the entityDefinition property.
*
* @param value
* allowed object is
* {@link EntityDefinition }
*
*/
public void setEntityDefinition(EntityDefinition value) {
this.entityDefinition = value;
}
/**
* Gets the value of the entityDefinitionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityDefinitionId() {
return entityDefinitionId;
}
/**
* Sets the value of the entityDefinitionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityDefinitionId(String value) {
this.entityDefinitionId = value;
}
/**
* Gets the value of the isActivateable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsActivateable() {
return isActivateable;
}
/**
* Sets the value of the isActivateable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsActivateable(Boolean value) {
this.isActivateable = value;
}
/**
* Gets the value of the isCreatable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsCreatable() {
return isCreatable;
}
/**
* Sets the value of the isCreatable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsCreatable(Boolean value) {
this.isCreatable = value;
}
/**
* Gets the value of the isDeletable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsDeletable() {
return isDeletable;
}
/**
* Sets the value of the isDeletable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsDeletable(Boolean value) {
this.isDeletable = value;
}
/**
* Gets the value of the isEditable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsEditable() {
return isEditable;
}
/**
* Sets the value of the isEditable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsEditable(Boolean value) {
this.isEditable = value;
}
/**
* Gets the value of the isFlsUpdatable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsFlsUpdatable() {
return isFlsUpdatable;
}
/**
* Sets the value of the isFlsUpdatable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsFlsUpdatable(Boolean value) {
this.isFlsUpdatable = value;
}
/**
* Gets the value of the isMergeable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsMergeable() {
return isMergeable;
}
/**
* Sets the value of the isMergeable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsMergeable(Boolean value) {
this.isMergeable = value;
}
/**
* Gets the value of the isReadable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsReadable() {
return isReadable;
}
/**
* Sets the value of the isReadable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsReadable(Boolean value) {
this.isReadable = value;
}
/**
* Gets the value of the isUndeletable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsUndeletable() {
return isUndeletable;
}
/**
* Sets the value of the isUndeletable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsUndeletable(Boolean value) {
this.isUndeletable = value;
}
/**
* Gets the value of the isUpdatable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsUpdatable() {
return isUpdatable;
}
/**
* Sets the value of the isUpdatable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsUpdatable(Boolean value) {
this.isUpdatable = value;
}
/**
* Gets the value of the user property.
*
* @return
* possible object is
* {@link User }
*
*/
public User getUser() {
return user;
}
/**
* Sets the value of the user property.
*
* @param value
* allowed object is
* {@link User }
*
*/
public void setUser(User value) {
this.user = value;
}
/**
* Gets the value of the userId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserId() {
return userId;
}
/**
* Sets the value of the userId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserId(String value) {
this.userId = value;
}
}