Map active = LogonControllerFactory.getInstance().getActiveSessions();
for (Iterator i = active.entrySet().iterator(); i.hasNext();) {
Map.Entry entry = (Map.Entry) i.next();
String ticket = (String) entry.getKey();
SessionInfo info = (SessionInfo) entry.getValue();
ActiveSession activeSession = new ActiveSession(info);
getModel().addItem(activeSession);
}
getPager().rebuild(getFilterText());
}