JBoss Community

Re: authenticated userId in workitem

created by Maciej Swiderski in jBPM - View the full discussion

Currently there is no out of the box support for this but if your execution is done by the same thread that started the process in console (meaning it did not went into any state node or async processing) you could get if from the thread context as it contains subject:

 

 

Subject subject = (Subject) PolicyContext.getContext("javax.security.auth.Subject.container");

 

From subject you can then get principals and one of them will be related to user, rest could be some roles/groups that users belongs to, etc.

NOTE: This is part of JACC so it should be cross container.

 

HTH

Reply to this message by going to Community

Start a new discussion in jBPM at Community