![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.tooling.metadata.ProfileFieldLevelSecurity 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.metadata;
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 ProfileFieldLevelSecurity complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProfileFieldLevelSecurity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="editable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="field" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="readable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProfileFieldLevelSecurity", propOrder = {
"editable",
"field",
"readable"
})
public class ProfileFieldLevelSecurity {
protected boolean editable;
@XmlElement(required = true)
protected String field;
protected Boolean readable;
/**
* Gets the value of the editable property.
*
*/
public boolean isEditable() {
return editable;
}
/**
* Sets the value of the editable property.
*
*/
public void setEditable(boolean value) {
this.editable = value;
}
/**
* Gets the value of the field property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getField() {
return field;
}
/**
* Sets the value of the field property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setField(String value) {
this.field = value;
}
/**
* Gets the value of the readable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isReadable() {
return readable;
}
/**
* Sets the value of the readable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setReadable(Boolean value) {
this.readable = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy