com.sforce.soap.tooling.metadata.FlowAssignmentItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
The newest version!
package com.sforce.soap.tooling.metadata;
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 com.sforce.soap.tooling.FlowAssignmentOperator;
/**
* Java class for FlowAssignmentItem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FlowAssignmentItem">
* <complexContent>
* <extension base="{urn:metadata.tooling.soap.sforce.com}FlowBaseElement">
* <sequence>
* <element name="assignToReference" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="operator" type="{urn:tooling.soap.sforce.com}FlowAssignmentOperator"/>
* <element name="value" type="{urn:metadata.tooling.soap.sforce.com}FlowElementReferenceOrValue" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FlowAssignmentItem", propOrder = {
"assignToReference",
"operator",
"value"
})
public class FlowAssignmentItem
extends FlowBaseElement
{
@XmlElement(required = true)
protected String assignToReference;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected FlowAssignmentOperator operator;
protected FlowElementReferenceOrValue value;
/**
* Gets the value of the assignToReference property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAssignToReference() {
return assignToReference;
}
/**
* Sets the value of the assignToReference property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAssignToReference(String value) {
this.assignToReference = value;
}
/**
* Gets the value of the operator property.
*
* @return
* possible object is
* {@link FlowAssignmentOperator }
*
*/
public FlowAssignmentOperator getOperator() {
return operator;
}
/**
* Sets the value of the operator property.
*
* @param value
* allowed object is
* {@link FlowAssignmentOperator }
*
*/
public void setOperator(FlowAssignmentOperator value) {
this.operator = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link FlowElementReferenceOrValue }
*
*/
public FlowElementReferenceOrValue getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link FlowElementReferenceOrValue }
*
*/
public void setValue(FlowElementReferenceOrValue value) {
this.value = value;
}
}