home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-tomcat-addon-1.4.9-installer.exe / servlet-api.jar / javax / servlet / http / HttpSession.class (.txt) < prev    next >
Encoding:
Java Class File  |  2004-08-28  |  872 b   |  46 lines

  1. package javax.servlet.http;
  2.  
  3. import java.util.Enumeration;
  4. import javax.servlet.ServletContext;
  5.  
  6. public interface HttpSession {
  7.    long getCreationTime();
  8.  
  9.    String getId();
  10.  
  11.    long getLastAccessedTime();
  12.  
  13.    ServletContext getServletContext();
  14.  
  15.    void setMaxInactiveInterval(int var1);
  16.  
  17.    int getMaxInactiveInterval();
  18.  
  19.    /** @deprecated */
  20.    HttpSessionContext getSessionContext();
  21.  
  22.    Object getAttribute(String var1);
  23.  
  24.    /** @deprecated */
  25.    Object getValue(String var1);
  26.  
  27.    Enumeration getAttributeNames();
  28.  
  29.    /** @deprecated */
  30.    String[] getValueNames();
  31.  
  32.    void setAttribute(String var1, Object var2);
  33.  
  34.    /** @deprecated */
  35.    void putValue(String var1, Object var2);
  36.  
  37.    void removeAttribute(String var1);
  38.  
  39.    /** @deprecated */
  40.    void removeValue(String var1);
  41.  
  42.    void invalidate();
  43.  
  44.    boolean isNew();
  45. }
  46.