FileDocCategorySizeDatePackage
HttpSessionEvent.javaAPI DocApache Tomcat 6.0.141296Fri Jul 20 04:20:30 BST 2007javax.servlet.http

HttpSessionEvent

public class HttpSessionEvent extends EventObject
This is the class representing event notifications for changes to sessions within a web application.
since
v 2.3

Fields Summary
Constructors Summary
public HttpSessionEvent(HttpSession source)
Construct a session event from the given source.

		super(source);
Methods Summary
public javax.servlet.http.HttpSessiongetSession()
Return the session that changed.

 
	return (HttpSession) super.getSource();