home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / HttpSessionBindingEvent.java < prev    next >
Text File  |  1998-04-21  |  2KB  |  84 lines

  1. /*
  2.  * @(#)HttpSessionBindingEvent.java    1.6 97/10/15
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19.  
  20.  
  21. package javax.servlet.http;
  22.  
  23. import java.util.EventObject;
  24.  
  25.  
  26. /**
  27.  * This event is communicated to a HttpSessionBindingListener whenever the 
  28.  * listener is bound to or unbound from a HttpSession value.  
  29.  *
  30.  * <p>The event's
  31.  * source is the HttpSession: binding occurs with a call to 
  32.  * HttpSession.putValue; unbinding occurs with a call to HttpSession.removeValue. 
  33.  *
  34.  * @see HttpSession
  35.  * @see HttpSessionBindingListener
  36.  *
  37.  * @version    1.6, 10/15/97
  38.  */
  39. public
  40. class HttpSessionBindingEvent
  41. extends EventObject
  42. {
  43.     /* The name to which the object is being bound or unbound */
  44.     private String name;
  45.  
  46.     /**
  47.      * Constructs a new HttpSessionBindingEvent
  48.      *
  49.      * @param session the session acting as the source of the event
  50.      * @param name the name to which the object is being bound or 
  51.      * the name from which the object is being unbound 
  52.      */
  53.     public HttpSessionBindingEvent (HttpSession session, String name)
  54.     {
  55.     super (session);
  56.     this.name = name;
  57.     }
  58.  
  59.     /**
  60.      * Returns the name to which the object is being bound or the name
  61.      * from which the object is being unbound.
  62.      */
  63.     public String getName ()
  64.     {
  65.     return name;
  66.     }
  67.  
  68.     /**
  69.      * Returns the session into which the listener is being bound or
  70.      * from which the listener is being unbound.
  71.      */
  72.     public HttpSession getSession ()
  73.     {
  74.     return (HttpSession) getSource ();
  75.     }
  76. }
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.