LogoutSession.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:3k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: LogoutSession.java,v 1.2 2000/04/06 08:02:02 wastl Exp $ */
  2. import net.wastl.webmail.server.*;
  3. import net.wastl.webmail.server.http.*;
  4. import net.wastl.webmail.ui.html.*;
  5. import net.wastl.webmail.ui.xml.*;
  6. import java.util.Locale;
  7. /*
  8.  * LogoutSession.java
  9.  *
  10.  * Created: Wed Sep  1 16:46:34 1999
  11.  *
  12.  * Copyright (C) 1999-2000 Sebastian Schaffert
  13.  * 
  14.  * This program is free software; you can redistribute it and/or
  15.  * modify it under the terms of the GNU General Public License
  16.  * as published by the Free Software Foundation; either version 2
  17.  * of the License, or (at your option) any later version.
  18.  * 
  19.  * This program is distributed in the hope that it will be useful,
  20.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  * GNU General Public License for more details.
  23.  * 
  24.  * You should have received a copy of the GNU General Public License
  25.  * along with this program; if not, write to the Free Software
  26.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  27.  */
  28. /**
  29.  * Log out a user.
  30.  *
  31.  * provides: logout
  32.  * requires: content bar
  33.  *
  34.  * @author Sebastian Schaffert
  35.  * @version
  36.  */
  37. public class LogoutSession implements Plugin, URLHandler {
  38.     
  39.     public static final String VERSION="1.3";
  40.     public static final String URL="/logout";
  41.     Storage store;
  42.     public LogoutSession() {
  43.     }
  44.  
  45.     public void register(WebMailServer parent) {
  46. parent.getURLHandler().registerHandler(URL,this);
  47. //parent.getContentBar().registerContentItem(this);
  48. store=parent.getStorage();
  49.     }
  50.     public String getName() {
  51. return "LogoutSession";
  52.     }
  53.     public String getDescription() {
  54. return "ContentProvider plugin that closes an active WebMail session.";
  55.     }
  56.     public String getVersion() {
  57. return VERSION;
  58.     }
  59.     public String getURL() {
  60. return URL;
  61.     }
  62.     public HTMLDocument handleURL(String suburl, HTTPSession session, HTTPRequestHeader header) throws WebMailException {
  63. if(session == null) {
  64.     throw new WebMailException("No session was given. If you feel this is incorrect, please contact your system administrator");
  65. }
  66. UserData user=((WebMailSession)session).getUser();
  67. HTMLDocument content=new XHTMLDocument(session.getModel(),store.getStylesheet("logout.xsl",user.getPreferredLocale(),user.getTheme()));
  68. if(!session.isLoggedOut()) {
  69.     session.logout();
  70. }
  71. return content;
  72.     }
  73.     public String provides() {
  74. return "logout";
  75.     }
  76.     public String requires() {
  77. return "content bar";
  78.     }
  79. } // LogoutSession