com.sforce.soap.tooling.metadata.FlowVariable 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.FlowDataType;
/**
* Java class for FlowVariable complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FlowVariable">
* <complexContent>
* <extension base="{urn:metadata.tooling.soap.sforce.com}FlowElement">
* <sequence>
* <element name="dataType" type="{urn:tooling.soap.sforce.com}FlowDataType"/>
* <element name="isCollection" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="isInput" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="isOutput" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="objectType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="scale" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="value" type="{urn:metadata.tooling.soap.sforce.com}FlowElementReferenceOrValue" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FlowVariable", propOrder = {
"dataType",
"isCollection",
"isInput",
"isOutput",
"objectType",
"scale",
"value"
})
public class FlowVariable
extends FlowElement
{
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected FlowDataType dataType;
protected Boolean isCollection;
protected Boolean isInput;
protected Boolean isOutput;
protected String objectType;
protected Integer scale;
protected FlowElementReferenceOrValue value;
/**
* Gets the value of the dataType property.
*
* @return
* possible object is
* {@link FlowDataType }
*
*/
public FlowDataType getDataType() {
return dataType;
}
/**
* Sets the value of the dataType property.
*
* @param value
* allowed object is
* {@link FlowDataType }
*
*/
public void setDataType(FlowDataType value) {
this.dataType = value;
}
/**
* Gets the value of the isCollection property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsCollection() {
return isCollection;
}
/**
* Sets the value of the isCollection property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsCollection(Boolean value) {
this.isCollection = value;
}
/**
* Gets the value of the isInput property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsInput() {
return isInput;
}
/**
* Sets the value of the isInput property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsInput(Boolean value) {
this.isInput = value;
}
/**
* Gets the value of the isOutput property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsOutput() {
return isOutput;
}
/**
* Sets the value of the isOutput property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsOutput(Boolean value) {
this.isOutput = value;
}
/**
* Gets the value of the objectType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getObjectType() {
return objectType;
}
/**
* Sets the value of the objectType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setObjectType(String value) {
this.objectType = value;
}
/**
* Gets the value of the scale property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getScale() {
return scale;
}
/**
* Sets the value of the scale property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setScale(Integer value) {
this.scale = 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;
}
}