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

Method Summary
 java.lang.String getName()
           
 DataType getType()
           
 java.io.Serializable getValue()
           
 void setName(java.lang.String name)
           
 void setType(DataType type)
           
 void setValue(java.io.Serializable value)
           
 

Method Detail

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)