All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sforce.soap.tooling.metadata.FlowConstant Maven / Gradle / Ivy

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy