use of io.automatiko.engine.workflow.process.executable.core.factory.VariableFactory in project automatiko-engine by automatiko-io.
the class ExecutableProcessFactory method variable.
public VariableFactory variable(String id, String name, DataType type) {
VariableFactory variableFactory = new VariableFactory(this);
variableFactory.variable(id, name, type);
return variableFactory;
}
use of io.automatiko.engine.workflow.process.executable.core.factory.VariableFactory in project automatiko-engine by automatiko-io.
the class ExecutableProcessFactory method variable.
public ExecutableProcessFactory variable(String name, DataType type, Object value, String metaDataName, Object metaDataValue) {
VariableFactory variableFactory = new VariableFactory(this);
variableFactory.variable("", name, type, value, metaDataName, metaDataValue);
return variableFactory.done();
}
Aggregations