Package org.ocpsoft.rewrite.servlet.spi
Interface RequestListener
- All Superinterfaces:
org.ocpsoft.common.pattern.Weighted
public interface RequestListener
extends org.ocpsoft.common.pattern.Weighted
Respond to
ServletRequest event types.- Author:
- Lincoln Baxter, III
-
Method Summary
Modifier and TypeMethodDescriptionvoidrequestDestroyed(jakarta.servlet.ServletRequestEvent event) Respond toServletContextdestroyed event.voidrequestInitialized(jakarta.servlet.ServletRequestEvent event) Respond toServletRequestinitialized event.Methods inherited from interface org.ocpsoft.common.pattern.Weighted
priority
-
Method Details
-
requestInitialized
void requestInitialized(jakarta.servlet.ServletRequestEvent event) Respond toServletRequestinitialized event. -
requestDestroyed
void requestDestroyed(jakarta.servlet.ServletRequestEvent event) Respond toServletContextdestroyed event.
-