Admin loging out a user

1
Is it possible as a System admin to log out a certain user. I want to be able to select a user from a data grid and log them out. If possible, how would i go about doing it?
asked
1 answers
0

A java action with the following should do the trick (assuming user is a System.User object):

ISession session = Core.getActiveSession(user.getName());
if (session != null)
    Core.logout(session)
answered