org.apache.catalina.SessionListener should extend java.util.EventListener
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@
1041578 13f79535-47bb-0310-9956-
ffa450edef68
package org.apache.catalina;
+import java.util.EventListener;
+
/**
* Interface defining a listener for significant Session generated events.
* @version $Id$
*/
-public interface SessionListener {
+public interface SessionListener extends EventListener {
/**
<section name="Tomcat 7.0.6 (markt)">
<subsection name="Catalina">
<changelog>
+ <fix>
+ <bug>8705</bug>: <code>org.apache.catalina.SessionListener</code> now
+ extends <code>java.util.EventListener</code>. (markt)
+ </fix>
<add>
<bug>48837</bug>: Extend thread local memory leak detection to include
classes loaded by subordinate class loaders to the web