Package org.apache.tapestry5.services
Interface ComponentRequestHandler
- 
- All Known Implementing Classes:
- ComponentRequestHandlerTerminator
 
 @UsesOrderedConfiguration(ComponentRequestFilter.class) public interface ComponentRequestHandler A facade aroundComponentEventRequestHandlerandPageRenderRequestHandlerthat allows for simplified filters that cover both types of requests.- Since:
- 5.1.0.0
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleComponentEvent(ComponentEventRequestParameters parameters)Handler for a component action request which will trigger an event on a component and use the return value to send a response to the client (typically, a redirect to a page render URL).voidhandlePageRender(PageRenderRequestParameters parameters)Invoked to activate and render a page.
 
- 
- 
- 
Method Detail- 
handleComponentEventvoid handleComponentEvent(ComponentEventRequestParameters parameters) throws java.io.IOException Handler for a component action request which will trigger an event on a component and use the return value to send a response to the client (typically, a redirect to a page render URL).- Parameters:
- parameters- defining the request
- Throws:
- java.io.IOException
 
 - 
handlePageRendervoid handlePageRender(PageRenderRequestParameters parameters) throws java.io.IOException Invoked to activate and render a page. In certain cases, based on values returned when activating the page, aComponentEventResultProcessormay be used to send an alternate response (typically, a redirect).- Parameters:
- parameters- defines the page name and activation context
- Throws:
- java.io.IOException
 
 
- 
 
-