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

com.sforce.soap.tooling.FlowDefinition 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 FlowDefinition complex type. * *

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

 * <complexType name="FlowDefinition">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}sObject">
 *       <sequence>
 *         <element name="ActiveVersion" type="{urn:tooling.soap.sforce.com}Flow" minOccurs="0"/>
 *         <element name="ActiveVersionId" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *         <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="DeveloperName" 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="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="LatestVersion" type="{urn:tooling.soap.sforce.com}Flow" minOccurs="0"/>
 *         <element name="LatestVersionId" type="{urn:tooling.soap.sforce.com}ID" 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}FlowDefinition" minOccurs="0"/>
 *         <element name="NamespacePrefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="SystemModstamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="Versions" type="{urn:tooling.soap.sforce.com}QueryResult" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FlowDefinition", propOrder = { "activeVersion", "activeVersionId", "createdBy", "createdById", "createdDate", "description", "developerName", "fullName", "lastModifiedBy", "lastModifiedById", "lastModifiedDate", "latestVersion", "latestVersionId", "masterLabel", "metadata", "namespacePrefix", "systemModstamp", "versions" }) public class FlowDefinition extends SObject { @XmlElement(name = "ActiveVersion", nillable = true) protected Flow activeVersion; @XmlElement(name = "ActiveVersionId", nillable = true) protected String activeVersionId; @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 = "DeveloperName", nillable = true) protected String developerName; @XmlElement(name = "FullName", nillable = true) protected String fullName; @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 = "LatestVersion", nillable = true) protected Flow latestVersion; @XmlElement(name = "LatestVersionId", nillable = true) protected String latestVersionId; @XmlElement(name = "MasterLabel", nillable = true) protected String masterLabel; @XmlElement(name = "Metadata", nillable = true) protected com.sforce.soap.tooling.metadata.FlowDefinition metadata; @XmlElement(name = "NamespacePrefix", nillable = true) protected String namespacePrefix; @XmlElement(name = "SystemModstamp", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar systemModstamp; @XmlElement(name = "Versions", nillable = true) protected QueryResult versions; /** * Gets the value of the activeVersion property. * * @return * possible object is * {@link Flow } * */ public Flow getActiveVersion() { return activeVersion; } /** * Sets the value of the activeVersion property. * * @param value * allowed object is * {@link Flow } * */ public void setActiveVersion(Flow value) { this.activeVersion = value; } /** * Gets the value of the activeVersionId property. * * @return * possible object is * {@link String } * */ public String getActiveVersionId() { return activeVersionId; } /** * Sets the value of the activeVersionId property. * * @param value * allowed object is * {@link String } * */ public void setActiveVersionId(String value) { this.activeVersionId = value; } /** * 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 developerName property. * * @return * possible object is * {@link String } * */ public String getDeveloperName() { return developerName; } /** * Sets the value of the developerName property. * * @param value * allowed object is * {@link String } * */ public void setDeveloperName(String value) { this.developerName = 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 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 latestVersion property. * * @return * possible object is * {@link Flow } * */ public Flow getLatestVersion() { return latestVersion; } /** * Sets the value of the latestVersion property. * * @param value * allowed object is * {@link Flow } * */ public void setLatestVersion(Flow value) { this.latestVersion = value; } /** * Gets the value of the latestVersionId property. * * @return * possible object is * {@link String } * */ public String getLatestVersionId() { return latestVersionId; } /** * Sets the value of the latestVersionId property. * * @param value * allowed object is * {@link String } * */ public void setLatestVersionId(String value) { this.latestVersionId = 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.FlowDefinition } * */ public com.sforce.soap.tooling.metadata.FlowDefinition getMetadata() { return metadata; } /** * Sets the value of the metadata property. * * @param value * allowed object is * {@link com.sforce.soap.tooling.metadata.FlowDefinition } * */ public void setMetadata(com.sforce.soap.tooling.metadata.FlowDefinition value) { this.metadata = 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 systemModstamp property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getSystemModstamp() { return systemModstamp; } /** * Sets the value of the systemModstamp property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setSystemModstamp(XMLGregorianCalendar value) { this.systemModstamp = value; } /** * Gets the value of the versions property. * * @return * possible object is * {@link QueryResult } * */ public QueryResult getVersions() { return versions; } /** * Sets the value of the versions property. * * @param value * allowed object is * {@link QueryResult } * */ public void setVersions(QueryResult value) { this.versions = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy