站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Java Platform, Enterprise Edition v1.4 API Specifications

ServletRequestListener (Java 2 Platform Ent. Ed. v1.4) - Java Platform, Enterprise Edition v1.4 API Specifications

JavaTM 2 Platform
Ent. Ed. v1.4

javax.servlet
Interface ServletRequestListener

All Superinterfaces:
EventListener

public interface ServletRequestListener
extends EventListener

Implementations of this interface recieve notifications about changes to the servlet request of the web application they are part of. To receive notification events, the implementation class must be configured in the deployment descriptor for the web application.

Since:
v 2.4
See Also:
ServletContextEvent

Method Summary
 void requestDestroyed(ServletRequestEvent sre)
          Notification that the servlet request is about to go out of scope.
 void requestInitialized(ServletRequestEvent sre)
          Notification that the servlet request is about to go into scope.
 

Method Detail

requestDestroyed

public void requestDestroyed(ServletRequestEvent sre)
Notification that the servlet request is about to go out of scope.


requestInitialized

public void requestInitialized(ServletRequestEvent sre)
Notification that the servlet request is about to go into scope.


JavaTM 2 Platform
Ent. Ed. v1.4

Submit a bug or feature

Copyright 2003 Sun Microsystems, Inc. All rights reserved.