javax.portlet.listener
Interface PortletRequestListener

All Superinterfaces:
java.util.EventListener

public interface PortletRequestListener
extends java.util.EventListener

Implementations of this interface receive notifications about changes to the portlet request of the portlet application they are part of.

To receive notification events, the implementation class must be configured in the deployment descriptor for the portlet application.

Since:
2.0

Method Summary
 void requestDestroyed(PortletRequestEvent pre)
          Notification that the portlet request is about to go out of scope.
 void requestInitialized(PortletRequestEvent pre)
          Notification that the portlet request is about to go into scope.
 

Method Detail

requestDestroyed

void requestDestroyed(PortletRequestEvent pre)
Notification that the portlet request is about to go out of scope.

Parameters:
pre -

requestInitialized

void requestInitialized(PortletRequestEvent pre)
Notification that the portlet request is about to go into scope.

Parameters:
pre -