cancel
Showing results for 
Search instead for 
Did you mean: 

Custom user management

fabrizio_spatar
Champ in-the-making
Champ in-the-making
Hello everyone.

I add Activiti engine into my project and i would manage user/group using this link:
http://www.activiti.org/userguide/#advanced.custom.session.manager

I would use this feature using more information than userId

In my project cannot choice the user based only userId but i should use userId companyId and jobId (i put this information into task variable).

How to access from my class UserManager (extends UserEntityManager) to task variable?

Thanks
1 REPLY 1

vasile_dirla
Star Contributor
Star Contributor
Do you want to access the process variables inside a custom class UserManager (which extends UserEntityManager) ?

if so this could be a solution…
<code>
Context.getExecutionContext().getExecution().getVariable(….)
</code>