How do you get the currently logged in from the session object after you have logged in using the Acegi filters.

Normally I would do like this:

Code:
HttpSession session = request.getSession();
String userName = (String) session.getAttribute("USER_NAME");
Then I'm using a session attribute that I've previously set.

How do you do this with Acegi?