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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: MailboxList.java,v 1.3 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.ContentProvider;
  5. import net.wastl.webmail.ui.html.*;
  6. import net.wastl.webmail.ui.xml.*;
  7. /*
  8.  * MailboxList.java
  9.  * 
  10.  * Created: Thu Sep  2 12:00:38 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.  * Show a list of user mailboxes.
  30.  *
  31.  * provides: mailbox list
  32.  * requires: content bar
  33.  *
  34.  * Created: Thu Sep  2 12:00:38 1999
  35.  *
  36.  * @author Sebastian Schaffert
  37.  * @version
  38.  */
  39. public class MailboxList implements Plugin, URLHandler {
  40.     
  41.     public static final String VERSION="1.3";
  42.     public static final String URL="/mailbox";
  43.     Storage store;
  44.     public MailboxList() {
  45.     }
  46.     public void register(WebMailServer parent) {
  47. parent.getURLHandler().registerHandler(URL,this);
  48. //parent.getContentBar().registerContentItem(this);
  49. store=parent.getStorage();
  50.     }
  51.     public String getName() {
  52. return "MailboxList";
  53.     }
  54.     public String getDescription() {
  55. return "This ContentProvider shows a list of all folders and links to the FolderList URLHandler.";
  56.     }
  57.     public String getVersion() {
  58. return VERSION;
  59.     }
  60.     public String getURL() {
  61. return URL;
  62.     }
  63.     public HTMLDocument handleURL(String suburl, HTTPSession sess, HTTPRequestHeader header) throws WebMailException {
  64. if(sess == null) {
  65.     throw new WebMailException("No session was given. If you feel this is incorrect, please contact your system administrator");
  66. }
  67. WebMailSession session=(WebMailSession)sess;
  68. UserData user=session.getUser();
  69. HTMLDocument content;
  70. /* If the user requests the folder overview, try to fetch new information */
  71. /* Do so only, if this is forced, to save the time! */
  72. if(header.isContentSet("force-refresh")) {
  73.     session.refreshFolderInformation();
  74. }
  75. content=new XHTMLDocument(session.getModel(),store.getStylesheet("mailbox.xsl",user.getPreferredLocale(),user.getTheme()));
  76. return content;
  77.     }
  78.     public String provides() {
  79. return "mailbox list";
  80.     }
  81.     public String requires() {
  82. return "content bar";
  83.     }
  84. } // MailboxList