com.sforce.soap.tooling.metadata.FlowStep Maven / Gradle / Ivy
Show all versions of sforce-tooling-api Show documentation
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 FlowStep complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FlowStep">
* <complexContent>
* <extension base="{urn:metadata.tooling.soap.sforce.com}FlowNode">
* <sequence>
* <element name="connectors" type="{urn:metadata.tooling.soap.sforce.com}FlowConnector" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FlowStep", propOrder = {
"connectors"
})
public class FlowStep
extends FlowNode
{
protected List connectors;
/**
* Gets the value of the connectors 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 connectors property.
*
*
* For example, to add a new item, do as follows:
*
* getConnectors().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FlowConnector }
*
*
*/
public List getConnectors() {
if (connectors == null) {
connectors = new ArrayList();
}
return this.connectors;
}
}