Open up a pipeline between the MasterDispatcher and the ActionLinkHandler and
PageLinkHandler to allow application-global interception of requests
--------------------------------------------------------------------------------------------------------------------------------------------------
Key: TAPESTRY-1479
URL: https://issues.apache.org/jira/browse/TAPESTRY-1479
Project: Tapestry
Issue Type: Improvement
Components: tapestry-core
Reporter: Howard M. Lewis Ship
Priority: Minor
Fix For: 5.0.5
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);
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]