KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > setup > forms > UserSessionsForm


1 /*
2  * SSL-Explorer
3  *
4  * Copyright (C) 2003-2006 3SP LTD. All Rights Reserved
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */

19             
20 package com.sslexplorer.setup.forms;
21
22 import java.util.Iterator JavaDoc;
23 import java.util.Map JavaDoc;
24
25 import javax.servlet.http.HttpSession JavaDoc;
26
27 import com.sslexplorer.security.LogonControllerFactory;
28 import com.sslexplorer.security.SessionInfo;
29 import com.sslexplorer.setup.ActiveSession;
30 import com.sslexplorer.setup.UserSessionsTableModel;
31 import com.sslexplorer.table.forms.AbstractPagerForm;
32
33
34 /**
35  * Implementation of a {@link AbstractPagerForm} that is used to display various
36  * status details.
37  * <p>
38  * This form
39  *
40  * @author Brett Smith <a HREF="mailto: brett@3sp.com">&lt;brett@3sp.com&gt;</a>
41  */

42 public class UserSessionsForm extends AbstractPagerForm {
43
44     /**
45      * Constructor.
46      *
47      */

48     public UserSessionsForm() {
49         super(new UserSessionsTableModel());
50     }
51     
52     /**
53      * Initialise
54      *
55      * @param session session
56      */

57     public void initialize(HttpSession JavaDoc session) {
58         super.initialize(session, "user");
59         Map JavaDoc active = LogonControllerFactory.getInstance().getActiveSessions();
60         for (Iterator JavaDoc i = active.entrySet().iterator(); i.hasNext();) {
61             Map.Entry JavaDoc entry = (Map.Entry JavaDoc) i.next();
62             String JavaDoc ticket = (String JavaDoc) entry.getKey();
63             SessionInfo info = (SessionInfo) entry.getValue();
64             ActiveSession activeSession = new ActiveSession(info);
65             getModel().addItem(activeSession);
66         }
67         getPager().rebuild(getFilterText());
68     }
69 }
Popular Tags