You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

How do I find the logged in user?

This can be retrieved easily from the com.atlassian.confluence.user.AuthenticatedUserThreadLocal class which will give you the current logged in user as a com.atlassian.user.User object.

User user = AuthenticatedUserThreadLocal.getUser();

Should the user not be logged in the user object will be null.

  • No labels