com.sforce.soap.tooling.Publisher 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 Publisher complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Publisher">
* <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="InstalledEntityDefinitions" type="{urn:tooling.soap.sforce.com}QueryResult" minOccurs="0"/>
* <element name="InstalledFieldDefinitions" type="{urn:tooling.soap.sforce.com}QueryResult" minOccurs="0"/>
* <element name="IsSalesforce" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="MajorVersion" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="MinorVersion" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="NamespacePrefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Publisher", propOrder = {
"durableId",
"installedEntityDefinitions",
"installedFieldDefinitions",
"isSalesforce",
"majorVersion",
"minorVersion",
"name",
"namespacePrefix"
})
public class Publisher
extends SObject
{
@XmlElement(name = "DurableId", nillable = true)
protected String durableId;
@XmlElement(name = "InstalledEntityDefinitions", nillable = true)
protected QueryResult installedEntityDefinitions;
@XmlElement(name = "InstalledFieldDefinitions", nillable = true)
protected QueryResult installedFieldDefinitions;
@XmlElement(name = "IsSalesforce", nillable = true)
protected Boolean isSalesforce;
@XmlElement(name = "MajorVersion", nillable = true)
protected Integer majorVersion;
@XmlElement(name = "MinorVersion", nillable = true)
protected Integer minorVersion;
@XmlElement(name = "Name", nillable = true)
protected String name;
@XmlElement(name = "NamespacePrefix", nillable = true)
protected String namespacePrefix;
/**
* 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 installedEntityDefinitions property.
*
* @return
* possible object is
* {@link QueryResult }
*
*/
public QueryResult getInstalledEntityDefinitions() {
return installedEntityDefinitions;
}
/**
* Sets the value of the installedEntityDefinitions property.
*
* @param value
* allowed object is
* {@link QueryResult }
*
*/
public void setInstalledEntityDefinitions(QueryResult value) {
this.installedEntityDefinitions = value;
}
/**
* Gets the value of the installedFieldDefinitions property.
*
* @return
* possible object is
* {@link QueryResult }
*
*/
public QueryResult getInstalledFieldDefinitions() {
return installedFieldDefinitions;
}
/**
* Sets the value of the installedFieldDefinitions property.
*
* @param value
* allowed object is
* {@link QueryResult }
*
*/
public void setInstalledFieldDefinitions(QueryResult value) {
this.installedFieldDefinitions = value;
}
/**
* Gets the value of the isSalesforce property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsSalesforce() {
return isSalesforce;
}
/**
* Sets the value of the isSalesforce property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsSalesforce(Boolean value) {
this.isSalesforce = value;
}
/**
* Gets the value of the majorVersion property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMajorVersion() {
return majorVersion;
}
/**
* Sets the value of the majorVersion property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMajorVersion(Integer value) {
this.majorVersion = value;
}
/**
* Gets the value of the minorVersion property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMinorVersion() {
return minorVersion;
}
/**
* Sets the value of the minorVersion property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMinorVersion(Integer value) {
this.minorVersion = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the namespacePrefix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNamespacePrefix() {
return namespacePrefix;
}
/**
* Sets the value of the namespacePrefix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNamespacePrefix(String value) {
this.namespacePrefix = value;
}
}