*/
private List findWorkflows(final Expression[] expressions) throws WorkflowException
{
try
{
List workflows = workflow.query(new WorkflowExpressionQuery(new NestedExpression(expressions, NestedExpression.OR)));
//List workflows = workflow.query(new WorkflowExpressionQuery(new FieldExpression(FieldExpression.OWNER, FieldExpression.CURRENT_STEPS, FieldExpression.EQUALS, owner.getIdentifier())));
return workflows;
}
catch (WorkflowException we)