}
@RequestMapping(value = "/user/currentUserList.do", method = RequestMethod.GET)
public ModelAndView list(HttpSession session, HttpServletRequest request) throws Exception {
User user = (User) getUser();
ZeroView view = new ZeroView(getMessages(), request.getLocale());
logFunction("user-current-list");
log.debug("currentUserList");
if (user.checkAuthorisation(UserModule.AUTH_CURRENT_USERS)) {
List<UserSession> userList = new ArrayList();
for (Object obj : sessionRegistry.getAllPrincipals()) {
log.debug(obj.getClass().getName() + " " + obj.toString());