All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sforce.soap.tooling.StandardAction Maven / Gradle / Ivy

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 StandardAction complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="StandardAction">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}sObject">
 *       <sequence>
 *         <element name="ContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DurableId" 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="IsOverridden" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="Label" type="{http://www.w3.org/2001/XMLSchema}string" 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="ManageableState" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="OverrideContent" type="{urn:tooling.soap.sforce.com}sObject" minOccurs="0"/>
 *         <element name="OverrideContentId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StandardAction", propOrder = { "contentType", "description", "durableId", "entityDefinition", "entityDefinitionId", "isOverridden", "label", "lastModifiedBy", "lastModifiedById", "lastModifiedDate", "manageableState", "name", "overrideContent", "overrideContentId" }) public class StandardAction extends SObject { @XmlElement(name = "ContentType", nillable = true) protected String contentType; @XmlElement(name = "Description", nillable = true) protected String description; @XmlElement(name = "DurableId", nillable = true) protected String durableId; @XmlElement(name = "EntityDefinition", nillable = true) protected EntityDefinition entityDefinition; @XmlElement(name = "EntityDefinitionId", nillable = true) protected String entityDefinitionId; @XmlElement(name = "IsOverridden", nillable = true) protected Boolean isOverridden; @XmlElement(name = "Label", nillable = true) protected String label; @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 = "ManageableState", nillable = true) protected String manageableState; @XmlElement(name = "Name", nillable = true) protected String name; @XmlElement(name = "OverrideContent", nillable = true) protected SObject overrideContent; @XmlElement(name = "OverrideContentId", nillable = true) protected String overrideContentId; /** * Gets the value of the contentType property. * * @return * possible object is * {@link String } * */ public String getContentType() { return contentType; } /** * Sets the value of the contentType property. * * @param value * allowed object is * {@link String } * */ public void setContentType(String value) { this.contentType = 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 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 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 isOverridden property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsOverridden() { return isOverridden; } /** * Sets the value of the isOverridden property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsOverridden(Boolean value) { this.isOverridden = 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 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 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 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 overrideContent property. * * @return * possible object is * {@link SObject } * */ public SObject getOverrideContent() { return overrideContent; } /** * Sets the value of the overrideContent property. * * @param value * allowed object is * {@link SObject } * */ public void setOverrideContent(SObject value) { this.overrideContent = value; } /** * Gets the value of the overrideContentId property. * * @return * possible object is * {@link String } * */ public String getOverrideContentId() { return overrideContentId; } /** * Sets the value of the overrideContentId property. * * @param value * allowed object is * {@link String } * */ public void setOverrideContentId(String value) { this.overrideContentId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy