com.sforce.soap.tooling.metadata.FlowConstant 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 FlowConstant complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FlowConstant">
* <complexContent>
* <extension base="{urn:metadata.tooling.soap.sforce.com}FlowElement">
* <sequence>
* <element name="dataType" type="{urn:tooling.soap.sforce.com}FlowDataType"/>
* <element name="value" type="{urn:metadata.tooling.soap.sforce.com}FlowElementReferenceOrValue" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FlowConstant", propOrder = {
"dataType",
"value"
})
public class FlowConstant
extends FlowElement
{
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected FlowDataType dataType;
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 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;
}
}