org.drools.ruleflow.core
Interface Variable
- All Known Implementing Classes:
- VariableImpl
public interface Variable
Represents a global variable used in a RuleFlow.
A variable has a name (should be unique for this process), a datatype
and possibly an initial value.
- Author:
- Kris Verlaenen
getName
java.lang.String getName()
setName
void setName(java.lang.String name)
getType
DataType getType()
setType
void setType(DataType type)
getValue
java.io.Serializable getValue()
setValue
void setValue(java.io.Serializable value)