You are viewing a plain text version of this content. The canonical link for it is here.
Posted to servletapi-dev@jakarta.apache.org by da...@locus.apache.org on 2000/10/17 00:43:39 UTC

cvs commit: jakarta-servletapi/src/share/javax/servlet/http HttpSessionActivationListener.java HttpSession.java

dannyc      00/10/16 15:43:39

  Modified:    src/share/javax/servlet/http Tag: SERVLET_23_JSP_12
                        HttpSession.java
  Added:       src/share/javax/servlet/http Tag: SERVLET_23_JSP_12
                        HttpSessionActivationListener.java
  Log:
  New listener for the agreed additions to distributable semantics and how sessions can migrate from VM to VM.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.1.1.4.2 +4 -0      jakarta-servletapi/src/share/javax/servlet/http/HttpSession.java
  
  Index: HttpSession.java
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi/src/share/javax/servlet/http/HttpSession.java,v
  retrieving revision 1.1.1.1.4.1
  retrieving revision 1.1.1.1.4.2
  diff -u -r1.1.1.1.4.1 -r1.1.1.1.4.2
  --- HttpSession.java	2000/10/11 20:13:09	1.1.1.1.4.1
  +++ HttpSession.java	2000/10/16 22:43:38	1.1.1.1.4.2
  @@ -87,6 +87,10 @@
    * {@link HttpSessionBindingListener}. If it does, 
    * the servlet notifies the object that it has been bound to or unbound 
    * from the session.
  + *
  + * <p> When container migrates a session between VMs in a distributed container
  + * setting, all session atributes implementing the {@link HttpSessionActivationListener}
  + * interface are notified.
    * 
    * <p>A servlet should be able to handle cases in which
    * the client does not choose to join a session, such as when cookies are
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +79 -0     jakarta-servletapi/src/share/javax/servlet/http/Attic/HttpSessionActivationListener.java