12-30-2013 02:45 AM
12-30-2013 07:10 AM
12-30-2013 09:46 PM
01-06-2014 07:05 AM
01-06-2014 11:13 PM
01-08-2014 03:36 AM
01-08-2014 10:09 PM
01-09-2014 06:02 AM
List<HistoricProcessInstance> processInstances = historyService
.createHistoricProcessInstanceQuery()
.startedBy(ExplorerApp.get().getLoggedInUser().getId())
.unfinished()
.list();
import org.activiti.engine.impl.identity.Authentication;
…
try {
Authentication.setAuthenticatedUserId("kermit");
runtimeService.start….
} finally {
// After API call is complete, always clear the authenticated user, in case this thread will be reused
// for other calls, eg. when API-call is done from a tomcat-thread-pool thread
Authentication.setAuthenticatedUserId(null);
}
01-09-2014 08:36 PM
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.