Package javax.servlet
Class ServletRequestEvent
- java.lang.Object
 - 
- java.util.EventObject
 - 
- javax.servlet.ServletRequestEvent
 
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable
- Direct Known Subclasses:
 ServletRequestAttributeEvent
public class ServletRequestEvent extends java.util.EventObjectEvents of this kind indicate lifecycle events for a ServletRequest. The source of the event is the ServletContext of this web application.- Since:
 - Servlet 2.4
 - See Also:
 ServletRequestListener, Serialized Form
 
- 
- 
Constructor Summary
Constructors Constructor Description ServletRequestEvent(ServletContext sc, ServletRequest request)Construct a ServletRequestEvent for the given ServletContext and ServletRequest. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ServletContextgetServletContext()Get the associated ServletContext.ServletRequestgetServletRequest()Get the associated ServletRequest. 
 - 
 
- 
- 
Constructor Detail
- 
ServletRequestEvent
public ServletRequestEvent(ServletContext sc, ServletRequest request)
Construct a ServletRequestEvent for the given ServletContext and ServletRequest.- Parameters:
 sc- the ServletContext of the web application.request- the ServletRequest that is sending the event.
 
 - 
 
- 
Method Detail
- 
getServletRequest
public ServletRequest getServletRequest()
Get the associated ServletRequest.- Returns:
 - the ServletRequest that is changing.
 
 
- 
getServletContext
public ServletContext getServletContext()
Get the associated ServletContext.- Returns:
 - the ServletContext that is changing.
 
 
 - 
 
 -