* @throws WorkflowException when the variable was not found.
*/
protected void setValue(String variableName, boolean value)
throws WorkflowException {
BooleanVariable variable = getWorkflowImpl().getVariable(variableName);
BooleanVariableInstance instance = getVariableInstance(variable);
instance.setValue(value);
}