* @param args
* the path arguments.
* @return the list of workflows.
*/
protected List<WorkflowRestRep> getList(String path, Object... args) {
WorkflowList response = client.get(WorkflowList.class, path, args);
return defaultList(response.getWorkflows());
}