![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.tooling.metadata.FlowAssignment 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 FlowAssignment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FlowAssignment">
* <complexContent>
* <extension base="{urn:metadata.tooling.soap.sforce.com}FlowNode">
* <sequence>
* <element name="assignmentItems" type="{urn:metadata.tooling.soap.sforce.com}FlowAssignmentItem" maxOccurs="unbounded" minOccurs="0"/>
* <element name="connector" type="{urn:metadata.tooling.soap.sforce.com}FlowConnector" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FlowAssignment", propOrder = {
"assignmentItems",
"connector"
})
public class FlowAssignment
extends FlowNode
{
protected List assignmentItems;
protected FlowConnector connector;
/**
* Gets the value of the assignmentItems 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 assignmentItems property.
*
*
* For example, to add a new item, do as follows:
*
* getAssignmentItems().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FlowAssignmentItem }
*
*
*/
public List getAssignmentItems() {
if (assignmentItems == null) {
assignmentItems = new ArrayList();
}
return this.assignmentItems;
}
/**
* 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;
}
}