| org.apache.tapestry.services.ComponentActionRequestHandler
All known Subclasses: org.apache.tapestry.internal.services.ComponentActionRequestHandlerImpl,
ComponentActionRequestHandler | public interface ComponentActionRequestHandler (Code) | | Handler interface for action requests. Action requests do things such as process a
form submission or otherwise change state. In the majority of cases, after the action, a redirect
response is sent to the client which, in turn, causes a page render.
See Also: ActionLink See Also: Form See Also: ComponentActionRequestFilter |
handle | ActionResponseGenerator handle(String logicalPageName, String nestedComponentId, String eventType, String[] context, String[] activationContext)(Code) | | Handler for a component action request, which returns a response generator used to send the
final response to the client.
Parameters: logicalPageName - the page name containing the component, and the default component to render theresponse Parameters: nestedComponentId - the id of the component within the page Parameters: eventType - the type of event to trigger on the component Parameters: context - context information to provide to the event handler |
|
|