![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.tooling.UserFieldAccess 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 UserFieldAccess complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="UserFieldAccess">
* <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="FieldDefinition" type="{urn:tooling.soap.sforce.com}FieldDefinition" minOccurs="0"/>
* <element name="FieldDefinitionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="IsAccessible" 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="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 = "UserFieldAccess", propOrder = {
"durableId",
"entityDefinition",
"entityDefinitionId",
"fieldDefinition",
"fieldDefinitionId",
"isAccessible",
"isCreatable",
"isUpdatable",
"user",
"userId"
})
public class UserFieldAccess
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 = "FieldDefinition", nillable = true)
protected FieldDefinition fieldDefinition;
@XmlElement(name = "FieldDefinitionId", nillable = true)
protected String fieldDefinitionId;
@XmlElement(name = "IsAccessible", nillable = true)
protected Boolean isAccessible;
@XmlElement(name = "IsCreatable", nillable = true)
protected Boolean isCreatable;
@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 fieldDefinition property.
*
* @return
* possible object is
* {@link FieldDefinition }
*
*/
public FieldDefinition getFieldDefinition() {
return fieldDefinition;
}
/**
* Sets the value of the fieldDefinition property.
*
* @param value
* allowed object is
* {@link FieldDefinition }
*
*/
public void setFieldDefinition(FieldDefinition value) {
this.fieldDefinition = value;
}
/**
* Gets the value of the fieldDefinitionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFieldDefinitionId() {
return fieldDefinitionId;
}
/**
* Sets the value of the fieldDefinitionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFieldDefinitionId(String value) {
this.fieldDefinitionId = value;
}
/**
* Gets the value of the isAccessible property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsAccessible() {
return isAccessible;
}
/**
* Sets the value of the isAccessible property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsAccessible(Boolean value) {
this.isAccessible = 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 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy