03-27-2013 09:57 AM
public Item loadSingleResult(String id) {
HistoricProcessInstance processInstance = historyService.createHistoricProcessInstanceQuery()
.startedBy(ExplorerApp.get().getLoggedInUser().getId())
.unfinished()
.processInstanceId(id).singleResult();
if (processInstance != null) {
return createItem(processInstance);
}
return null;
}03-27-2013 10:08 AM
/**
* Select the process instances with which the user with the given id is involved.
*/
ProcessInstanceQuery involvedUser(String userId);
03-27-2013 10:53 AM
But I want a query that gives to the user the graphic image of the process that he's involved, not just the started processes.
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.