This content has been marked as final.
Show 1 reply
-
1. Re: Create new users in jBPM
milhaim Jun 20, 2012 7:11 AM (in response to ashish_kumar)Hi,
If you are assking about jbpm / human task users, you can add them when you create the taskservice
TaskService taskService =newTaskService(emf, SystemEventListenerFactory.getSystemEventListener());TaskServiceSession taskSession = taskService.createSession();taskSession.addUser(newUser("Administrator"));taskSession.addUser(newUser("....you can load you list of users from a file or a database
HTH