com.sforce.soap.tooling.WebLink 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for WebLink complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="WebLink">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}sObject">
* <sequence>
* <element name="CreatedBy" type="{urn:tooling.soap.sforce.com}User" minOccurs="0"/>
* <element name="CreatedById" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="CreatedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="DisplayType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="EncodingKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="EntityDefinition" type="{urn:tooling.soap.sforce.com}EntityDefinition" minOccurs="0"/>
* <element name="EntityDefinitionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="FullName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="HasMenubar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="HasScrollbars" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="HasToolbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="Height" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="IsResizable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="LastModifiedBy" type="{urn:tooling.soap.sforce.com}User" minOccurs="0"/>
* <element name="LastModifiedById" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="LastModifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="LinkType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ManageableState" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="MasterLabel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Metadata" type="{urn:metadata.tooling.soap.sforce.com}WebLink" 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"/>
* <element name="OpenType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Position" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="RequireRowSelection" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="ScontrolId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
* <element name="ShowsLocation" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="ShowsStatus" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="Url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Width" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WebLink", propOrder = {
"createdBy",
"createdById",
"createdDate",
"description",
"displayType",
"encodingKey",
"entityDefinition",
"entityDefinitionId",
"fullName",
"hasMenubar",
"hasScrollbars",
"hasToolbar",
"height",
"isResizable",
"lastModifiedBy",
"lastModifiedById",
"lastModifiedDate",
"linkType",
"manageableState",
"masterLabel",
"metadata",
"name",
"namespacePrefix",
"openType",
"position",
"requireRowSelection",
"scontrolId",
"showsLocation",
"showsStatus",
"url",
"width"
})
public class WebLink
extends SObject
{
@XmlElement(name = "CreatedBy", nillable = true)
protected User createdBy;
@XmlElement(name = "CreatedById", nillable = true)
protected String createdById;
@XmlElement(name = "CreatedDate", nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar createdDate;
@XmlElement(name = "Description", nillable = true)
protected String description;
@XmlElement(name = "DisplayType", nillable = true)
protected String displayType;
@XmlElement(name = "EncodingKey", nillable = true)
protected String encodingKey;
@XmlElement(name = "EntityDefinition", nillable = true)
protected EntityDefinition entityDefinition;
@XmlElement(name = "EntityDefinitionId", nillable = true)
protected String entityDefinitionId;
@XmlElement(name = "FullName", nillable = true)
protected String fullName;
@XmlElement(name = "HasMenubar", nillable = true)
protected Boolean hasMenubar;
@XmlElement(name = "HasScrollbars", nillable = true)
protected Boolean hasScrollbars;
@XmlElement(name = "HasToolbar", nillable = true)
protected Boolean hasToolbar;
@XmlElement(name = "Height", nillable = true)
protected Integer height;
@XmlElement(name = "IsResizable", nillable = true)
protected Boolean isResizable;
@XmlElement(name = "LastModifiedBy", nillable = true)
protected User lastModifiedBy;
@XmlElement(name = "LastModifiedById", nillable = true)
protected String lastModifiedById;
@XmlElement(name = "LastModifiedDate", nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastModifiedDate;
@XmlElement(name = "LinkType", nillable = true)
protected String linkType;
@XmlElement(name = "ManageableState", nillable = true)
protected String manageableState;
@XmlElement(name = "MasterLabel", nillable = true)
protected String masterLabel;
@XmlElement(name = "Metadata", nillable = true)
protected com.sforce.soap.tooling.metadata.WebLink metadata;
@XmlElement(name = "Name", nillable = true)
protected String name;
@XmlElement(name = "NamespacePrefix", nillable = true)
protected String namespacePrefix;
@XmlElement(name = "OpenType", nillable = true)
protected String openType;
@XmlElement(name = "Position", nillable = true)
protected String position;
@XmlElement(name = "RequireRowSelection", nillable = true)
protected Boolean requireRowSelection;
@XmlElement(name = "ScontrolId", nillable = true)
protected String scontrolId;
@XmlElement(name = "ShowsLocation", nillable = true)
protected Boolean showsLocation;
@XmlElement(name = "ShowsStatus", nillable = true)
protected Boolean showsStatus;
@XmlElement(name = "Url", nillable = true)
protected String url;
@XmlElement(name = "Width", nillable = true)
protected Integer width;
/**
* Gets the value of the createdBy property.
*
* @return
* possible object is
* {@link User }
*
*/
public User getCreatedBy() {
return createdBy;
}
/**
* Sets the value of the createdBy property.
*
* @param value
* allowed object is
* {@link User }
*
*/
public void setCreatedBy(User value) {
this.createdBy = value;
}
/**
* Gets the value of the createdById property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreatedById() {
return createdById;
}
/**
* Sets the value of the createdById property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreatedById(String value) {
this.createdById = value;
}
/**
* Gets the value of the createdDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreatedDate() {
return createdDate;
}
/**
* Sets the value of the createdDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCreatedDate(XMLGregorianCalendar value) {
this.createdDate = 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 displayType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisplayType() {
return displayType;
}
/**
* Sets the value of the displayType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisplayType(String value) {
this.displayType = value;
}
/**
* Gets the value of the encodingKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEncodingKey() {
return encodingKey;
}
/**
* Sets the value of the encodingKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEncodingKey(String value) {
this.encodingKey = value;
}
/**
* Gets the value of the entityDefinition property.
*
* @return
* possible object is
* {@link EntityDefinition }
*
*/
public EntityDefinition getEntityDefinition() {
return entityDefinition;
}
/**
* Sets the value of the entityDefinition property.
*
* @param value
* allowed object is
* {@link EntityDefinition }
*
*/
public void setEntityDefinition(EntityDefinition value) {
this.entityDefinition = value;
}
/**
* Gets the value of the entityDefinitionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityDefinitionId() {
return entityDefinitionId;
}
/**
* Sets the value of the entityDefinitionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityDefinitionId(String value) {
this.entityDefinitionId = value;
}
/**
* Gets the value of the fullName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFullName() {
return fullName;
}
/**
* Sets the value of the fullName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFullName(String value) {
this.fullName = value;
}
/**
* Gets the value of the hasMenubar property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHasMenubar() {
return hasMenubar;
}
/**
* Sets the value of the hasMenubar property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHasMenubar(Boolean value) {
this.hasMenubar = value;
}
/**
* Gets the value of the hasScrollbars property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHasScrollbars() {
return hasScrollbars;
}
/**
* Sets the value of the hasScrollbars property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHasScrollbars(Boolean value) {
this.hasScrollbars = value;
}
/**
* Gets the value of the hasToolbar property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHasToolbar() {
return hasToolbar;
}
/**
* Sets the value of the hasToolbar property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHasToolbar(Boolean value) {
this.hasToolbar = value;
}
/**
* Gets the value of the height property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getHeight() {
return height;
}
/**
* Sets the value of the height property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setHeight(Integer value) {
this.height = value;
}
/**
* Gets the value of the isResizable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsResizable() {
return isResizable;
}
/**
* Sets the value of the isResizable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsResizable(Boolean value) {
this.isResizable = value;
}
/**
* Gets the value of the lastModifiedBy property.
*
* @return
* possible object is
* {@link User }
*
*/
public User getLastModifiedBy() {
return lastModifiedBy;
}
/**
* Sets the value of the lastModifiedBy property.
*
* @param value
* allowed object is
* {@link User }
*
*/
public void setLastModifiedBy(User value) {
this.lastModifiedBy = value;
}
/**
* Gets the value of the lastModifiedById property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastModifiedById() {
return lastModifiedById;
}
/**
* Sets the value of the lastModifiedById property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastModifiedById(String value) {
this.lastModifiedById = value;
}
/**
* Gets the value of the lastModifiedDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastModifiedDate() {
return lastModifiedDate;
}
/**
* Sets the value of the lastModifiedDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastModifiedDate(XMLGregorianCalendar value) {
this.lastModifiedDate = value;
}
/**
* Gets the value of the linkType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLinkType() {
return linkType;
}
/**
* Sets the value of the linkType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLinkType(String value) {
this.linkType = value;
}
/**
* Gets the value of the manageableState property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getManageableState() {
return manageableState;
}
/**
* Sets the value of the manageableState property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setManageableState(String value) {
this.manageableState = value;
}
/**
* Gets the value of the masterLabel property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMasterLabel() {
return masterLabel;
}
/**
* Sets the value of the masterLabel property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMasterLabel(String value) {
this.masterLabel = value;
}
/**
* Gets the value of the metadata property.
*
* @return
* possible object is
* {@link com.sforce.soap.tooling.metadata.WebLink }
*
*/
public com.sforce.soap.tooling.metadata.WebLink getMetadata() {
return metadata;
}
/**
* Sets the value of the metadata property.
*
* @param value
* allowed object is
* {@link com.sforce.soap.tooling.metadata.WebLink }
*
*/
public void setMetadata(com.sforce.soap.tooling.metadata.WebLink value) {
this.metadata = 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;
}
/**
* Gets the value of the openType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOpenType() {
return openType;
}
/**
* Sets the value of the openType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOpenType(String value) {
this.openType = value;
}
/**
* Gets the value of the position property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPosition() {
return position;
}
/**
* Sets the value of the position property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPosition(String value) {
this.position = value;
}
/**
* Gets the value of the requireRowSelection property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRequireRowSelection() {
return requireRowSelection;
}
/**
* Sets the value of the requireRowSelection property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setRequireRowSelection(Boolean value) {
this.requireRowSelection = value;
}
/**
* Gets the value of the scontrolId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getScontrolId() {
return scontrolId;
}
/**
* Sets the value of the scontrolId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setScontrolId(String value) {
this.scontrolId = value;
}
/**
* Gets the value of the showsLocation property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isShowsLocation() {
return showsLocation;
}
/**
* Sets the value of the showsLocation property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setShowsLocation(Boolean value) {
this.showsLocation = value;
}
/**
* Gets the value of the showsStatus property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isShowsStatus() {
return showsStatus;
}
/**
* Sets the value of the showsStatus property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setShowsStatus(Boolean value) {
this.showsStatus = 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 width property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getWidth() {
return width;
}
/**
* Sets the value of the width property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setWidth(Integer value) {
this.width = value;
}
}