com.sforce.soap.tooling.metadata.CustomConsoleComponents 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.XmlType;
/**
* Java class for CustomConsoleComponents complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomConsoleComponents">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="primaryTabComponents" type="{urn:metadata.tooling.soap.sforce.com}PrimaryTabComponents" minOccurs="0"/>
* <element name="subtabComponents" type="{urn:metadata.tooling.soap.sforce.com}SubtabComponents" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomConsoleComponents", propOrder = {
"primaryTabComponents",
"subtabComponents"
})
public class CustomConsoleComponents {
protected PrimaryTabComponents primaryTabComponents;
protected SubtabComponents subtabComponents;
/**
* Gets the value of the primaryTabComponents property.
*
* @return
* possible object is
* {@link PrimaryTabComponents }
*
*/
public PrimaryTabComponents getPrimaryTabComponents() {
return primaryTabComponents;
}
/**
* Sets the value of the primaryTabComponents property.
*
* @param value
* allowed object is
* {@link PrimaryTabComponents }
*
*/
public void setPrimaryTabComponents(PrimaryTabComponents value) {
this.primaryTabComponents = value;
}
/**
* Gets the value of the subtabComponents property.
*
* @return
* possible object is
* {@link SubtabComponents }
*
*/
public SubtabComponents getSubtabComponents() {
return subtabComponents;
}
/**
* Sets the value of the subtabComponents property.
*
* @param value
* allowed object is
* {@link SubtabComponents }
*
*/
public void setSubtabComponents(SubtabComponents value) {
this.subtabComponents = value;
}
}