FileDocCategorySizeDatePackage
HttpSessionEvent.javaAPI DocGlassfish v2 API2473Fri May 04 22:34:20 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();