Package org.apache.tapestry5.services
Interface PageRenderRequestFilter
-
public interface PageRenderRequestFilter
Filter interface forPageRenderRequestHandler
, which allows extra behaviors to be injected into the processing of a page render request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handle(PageRenderRequestParameters parameters, PageRenderRequestHandler handler)
Invoked to activate and render a page.
-
-
-
Method Detail
-
handle
void handle(PageRenderRequestParameters parameters, PageRenderRequestHandler handler) throws java.io.IOException
Invoked to activate and render a page. The return value of the event handler method(s) for the activate event may result in an action response generator being returned.- Parameters:
parameters
- defines the page name and activation contexthandler
- to delegate the invocation to- Throws:
java.io.IOException
-
-