Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
5.0
-
None
Description
It would be very useful to have a pipeline step between the point where the type of request is known and that information is executed. Something like:
interface RequestPipeline
{ void handleAction(String logicalPageName, String nestedComponentId, String eventType, String[] context, String[] activationContext); void handleRender(String logicalPageName, String[] context, PageRenderer renderer); }interface RequestPipelineFilter
{ void handleAction(String logicalPageName, String nestedComponentId, String eventType, String[] context, String[] activationContext, RequestPipeline pipeline); void handleRender(String logicalPageName, String[] context, PageRenderer renderer, RequestPipeline pipeline); }