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

com.sforce.soap.tooling.metadata.FlowScreen Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling.metadata;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for FlowScreen complex type. * *

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

 * <complexType name="FlowScreen">
 *   <complexContent>
 *     <extension base="{urn:metadata.tooling.soap.sforce.com}FlowNode">
 *       <sequence>
 *         <element name="allowBack" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="allowFinish" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="allowPause" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="connector" type="{urn:metadata.tooling.soap.sforce.com}FlowConnector" minOccurs="0"/>
 *         <element name="fields" type="{urn:metadata.tooling.soap.sforce.com}FlowScreenField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="helpText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="pausedText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FlowScreen", propOrder = { "allowBack", "allowFinish", "allowPause", "connector", "fields", "helpText", "pausedText" }) public class FlowScreen extends FlowNode { protected Boolean allowBack; protected Boolean allowFinish; protected Boolean allowPause; protected FlowConnector connector; protected List fields; protected String helpText; protected String pausedText; /** * Gets the value of the allowBack property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAllowBack() { return allowBack; } /** * Sets the value of the allowBack property. * * @param value * allowed object is * {@link Boolean } * */ public void setAllowBack(Boolean value) { this.allowBack = value; } /** * Gets the value of the allowFinish property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAllowFinish() { return allowFinish; } /** * Sets the value of the allowFinish property. * * @param value * allowed object is * {@link Boolean } * */ public void setAllowFinish(Boolean value) { this.allowFinish = value; } /** * Gets the value of the allowPause property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAllowPause() { return allowPause; } /** * Sets the value of the allowPause property. * * @param value * allowed object is * {@link Boolean } * */ public void setAllowPause(Boolean value) { this.allowPause = value; } /** * Gets the value of the connector property. * * @return * possible object is * {@link FlowConnector } * */ public FlowConnector getConnector() { return connector; } /** * Sets the value of the connector property. * * @param value * allowed object is * {@link FlowConnector } * */ public void setConnector(FlowConnector value) { this.connector = value; } /** * Gets the value of the fields property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the fields property. * *

* For example, to add a new item, do as follows: *

     *    getFields().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FlowScreenField } * * */ public List getFields() { if (fields == null) { fields = new ArrayList(); } return this.fields; } /** * Gets the value of the helpText property. * * @return * possible object is * {@link String } * */ public String getHelpText() { return helpText; } /** * Sets the value of the helpText property. * * @param value * allowed object is * {@link String } * */ public void setHelpText(String value) { this.helpText = value; } /** * Gets the value of the pausedText property. * * @return * possible object is * {@link String } * */ public String getPausedText() { return pausedText; } /** * Sets the value of the pausedText property. * * @param value * allowed object is * {@link String } * */ public void setPausedText(String value) { this.pausedText = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy