![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.tooling.metadata.ProfileTabVisibility 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import com.sforce.soap.tooling.TabVisibility;
/**
* Java class for ProfileTabVisibility complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProfileTabVisibility">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="tab" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="visibility" type="{urn:tooling.soap.sforce.com}TabVisibility"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProfileTabVisibility", propOrder = {
"tab",
"visibility"
})
public class ProfileTabVisibility {
@XmlElement(required = true)
protected String tab;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected TabVisibility visibility;
/**
* Gets the value of the tab property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTab() {
return tab;
}
/**
* Sets the value of the tab property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTab(String value) {
this.tab = value;
}
/**
* Gets the value of the visibility property.
*
* @return
* possible object is
* {@link TabVisibility }
*
*/
public TabVisibility getVisibility() {
return visibility;
}
/**
* Sets the value of the visibility property.
*
* @param value
* allowed object is
* {@link TabVisibility }
*
*/
public void setVisibility(TabVisibility value) {
this.visibility = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy