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

WEB邮件程序

开发平台:

C/C++

  1. /* $Id: URLHandler.java,v 1.2 2000/04/06 08:02:02 wastl Exp $ */
  2. package net.wastl.webmail.server;
  3. import net.wastl.webmail.ui.*;
  4. import net.wastl.webmail.ui.html.*;
  5. import net.wastl.webmail.server.http.*;
  6. /**
  7.  * URLHandler.java
  8.  *
  9.  * Created: Aug 1999
  10.  *
  11.  * Copyright (C) 1999-2000 Sebastian Schaffert
  12.  * 
  13.  * This program is free software; you can redistribute it and/or
  14.  * modify it under the terms of the GNU General Public License
  15.  * as published by the Free Software Foundation; either version 2
  16.  * of the License, or (at your option) any later version.
  17.  * 
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  * 
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  26.  */
  27. /**
  28.  * Classes that want to register for handling URLs must implement this.
  29.  * 
  30.  * @author Sebastian Schaffert
  31.  * @versin $Revision: 1.2 $
  32. */
  33. public interface URLHandler extends URLHandlerTreeNode {
  34.     public String getName();
  35.     
  36.     public String getDescription();
  37.     public HTMLDocument handleURL(String suburl, HTTPSession session, HTTPRequestHeader header) throws WebMailException;
  38. }