
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.CustomTab Maven / Gradle / Ivy
The newest version!
package com.palominolabs.crm.sf.soap.jaxwsstub.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 CustomTab complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomTab">
* <complexContent>
* <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
* <sequence>
* <element name="customObject" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="frameHeight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="hasSidebar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="icon" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="mobileReady" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="motif" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="page" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="scontrol" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="splashPageLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="urlEncodingKey" type="{http://soap.sforce.com/2006/04/metadata}Encoding" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomTab", propOrder = {
"customObject",
"description",
"frameHeight",
"hasSidebar",
"icon",
"label",
"mobileReady",
"motif",
"page",
"scontrol",
"splashPageLink",
"url",
"urlEncodingKey"
})
public class CustomTab
extends Metadata
{
protected Boolean customObject;
protected String description;
protected Integer frameHeight;
protected Boolean hasSidebar;
protected String icon;
protected String label;
protected boolean mobileReady;
@XmlElement(required = true)
protected String motif;
protected String page;
protected String scontrol;
protected String splashPageLink;
protected String url;
protected Encoding urlEncodingKey;
/**
* Gets the value of the customObject property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCustomObject() {
return customObject;
}
/**
* Sets the value of the customObject property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCustomObject(Boolean value) {
this.customObject = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the frameHeight property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getFrameHeight() {
return frameHeight;
}
/**
* Sets the value of the frameHeight property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setFrameHeight(Integer value) {
this.frameHeight = value;
}
/**
* Gets the value of the hasSidebar property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHasSidebar() {
return hasSidebar;
}
/**
* Sets the value of the hasSidebar property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHasSidebar(Boolean value) {
this.hasSidebar = value;
}
/**
* Gets the value of the icon property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIcon() {
return icon;
}
/**
* Sets the value of the icon property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIcon(String value) {
this.icon = 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 mobileReady property.
*
*/
public boolean isMobileReady() {
return mobileReady;
}
/**
* Sets the value of the mobileReady property.
*
*/
public void setMobileReady(boolean value) {
this.mobileReady = value;
}
/**
* Gets the value of the motif property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMotif() {
return motif;
}
/**
* Sets the value of the motif property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMotif(String value) {
this.motif = value;
}
/**
* Gets the value of the page property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPage() {
return page;
}
/**
* Sets the value of the page property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPage(String value) {
this.page = value;
}
/**
* Gets the value of the scontrol property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getScontrol() {
return scontrol;
}
/**
* Sets the value of the scontrol property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setScontrol(String value) {
this.scontrol = value;
}
/**
* Gets the value of the splashPageLink property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSplashPageLink() {
return splashPageLink;
}
/**
* Sets the value of the splashPageLink property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSplashPageLink(String value) {
this.splashPageLink = value;
}
/**
* Gets the value of the url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
/**
* Gets the value of the urlEncodingKey property.
*
* @return
* possible object is
* {@link Encoding }
*
*/
public Encoding getUrlEncodingKey() {
return urlEncodingKey;
}
/**
* Sets the value of the urlEncodingKey property.
*
* @param value
* allowed object is
* {@link Encoding }
*
*/
public void setUrlEncodingKey(Encoding value) {
this.urlEncodingKey = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy