username using client context
How to get the logged in username using client context. I tried following code, but got admin as output, where as i want output as user logged in the geometrixx website.
Session session = resourceResolver.adaptTo(Session.class);
String userName=session.getUserID();
i guess this can be done using client context. Can anyone help me out getting username from client context.
Thanks in advance.