Search in sources :

Example 1 with 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 VariableFactory variable(String id, String name, DataType type) {
    VariableFactory variableFactory = new VariableFactory(this);
    variableFactory.variable(id, name, type);
    return variableFactory;
}
Also used : VariableFactory(io.automatiko.engine.workflow.process.executable.core.factory.VariableFactory)

Example 2 with 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();
}
Also used : VariableFactory(io.automatiko.engine.workflow.process.executable.core.factory.VariableFactory)

Aggregations

VariableFactory (io.automatiko.engine.workflow.process.executable.core.factory.VariableFactory)2