1 17 package javax.servlet.http; 18 19 import java.util.EventListener ; 20 21 26 27 public interface HttpSessionAttributeListener extends EventListener { 28 29 public void attributeAdded ( HttpSessionBindingEvent se ); 30 31 public void attributeRemoved ( HttpSessionBindingEvent se ); 32 33 public void attributeReplaced ( HttpSessionBindingEvent se ); 34 35 } 36 37 | Popular Tags |