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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: HTTPSession.java,v 1.3 2000/04/06 08:02:02 wastl Exp $ */
  2. package net.wastl.webmail.server;
  3. import net.wastl.webmail.server.http.*;
  4. import java.net.*;
  5. import java.util.*;
  6. import org.w3c.dom.Document;
  7. /*
  8.  * HTTPSession.java
  9.  *
  10.  *
  11.  * Created: Thu Sep  9 17:20:37 1999
  12.  *
  13.  * Copyright (C) 1999-2000 Sebastian Schaffert
  14.  * 
  15.  * This program is free software; you can redistribute it and/or
  16.  * modify it under the terms of the GNU General Public License
  17.  * as published by the Free Software Foundation; either version 2
  18.  * of the License, or (at your option) any later version.
  19.  * 
  20.  * This program is distributed in the hope that it will be useful,
  21.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23.  * GNU General Public License for more details.
  24.  * 
  25.  * You should have received a copy of the GNU General Public License
  26.  * along with this program; if not, write to the Free Software
  27.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  28.  */
  29. /**
  30.  *
  31.  * @author Sebastian Schaffert
  32.  * @version
  33.  */
  34. public interface HTTPSession extends TimeableConnection {
  35.     
  36.     public void login(HTTPRequestHeader h) throws InvalidPasswordException;
  37.     public void logout();
  38.     public String getSessionCode();
  39.     public Locale getLocale();
  40.     public long getLastAccess();
  41.     public void setLastAccess();
  42.     public String getEnv(String key);
  43.     public void setEnv(String key, String value);
  44.     public void setEnv();
  45.     public InetAddress getRemoteAddress();
  46.     public void saveData();
  47.     public Document getModel();
  48.     public boolean isLoggedOut();
  49.    
  50. } // HTTPSession