com.sforce.soap.tooling.metadata.FlowSubflow 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for FlowSubflow complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FlowSubflow">
* <complexContent>
* <extension base="{urn:metadata.tooling.soap.sforce.com}FlowNode">
* <sequence>
* <element name="connector" type="{urn:metadata.tooling.soap.sforce.com}FlowConnector" minOccurs="0"/>
* <element name="flowName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="inputAssignments" type="{urn:metadata.tooling.soap.sforce.com}FlowSubflowInputAssignment" maxOccurs="unbounded" minOccurs="0"/>
* <element name="outputAssignments" type="{urn:metadata.tooling.soap.sforce.com}FlowSubflowOutputAssignment" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FlowSubflow", propOrder = {
"connector",
"flowName",
"inputAssignments",
"outputAssignments"
})
public class FlowSubflow
extends FlowNode
{
protected FlowConnector connector;
@XmlElement(required = true)
protected String flowName;
protected List inputAssignments;
protected List outputAssignments;
/**
* 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 flowName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFlowName() {
return flowName;
}
/**
* Sets the value of the flowName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFlowName(String value) {
this.flowName = value;
}
/**
* Gets the value of the inputAssignments 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 inputAssignments property.
*
*
* For example, to add a new item, do as follows:
*
* getInputAssignments().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FlowSubflowInputAssignment }
*
*
*/
public List getInputAssignments() {
if (inputAssignments == null) {
inputAssignments = new ArrayList();
}
return this.inputAssignments;
}
/**
* Gets the value of the outputAssignments 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 outputAssignments property.
*
*
* For example, to add a new item, do as follows:
*
* getOutputAssignments().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FlowSubflowOutputAssignment }
*
*
*/
public List getOutputAssignments() {
if (outputAssignments == null) {
outputAssignments = new ArrayList();
}
return this.outputAssignments;
}
}