Package org.apache.tapestry5.services
Class ComponentEventRequestParameters
java.lang.Object
org.apache.tapestry5.services.ComponentEventRequestParameters
Encapsulates all the information that may be provided in a component event request URL.
-
Constructor Summary
ConstructorsConstructorDescriptionComponentEventRequestParameters
(String activePageName, String containingPageName, String nestedComponentId, String eventType, EventContext pageActivationContext, EventContext eventContext) -
Method Summary
Modifier and TypeMethodDescriptionboolean
The name of the active page which rendered the link.The name of the page containing the component that was triggered.The event context information passed in the URL.The type of event.The path from the containing page down to the component in question.The activation context for the active page, possibly empty (but not null).toString()
-
Constructor Details
-
ComponentEventRequestParameters
public ComponentEventRequestParameters(String activePageName, String containingPageName, String nestedComponentId, String eventType, EventContext pageActivationContext, EventContext eventContext)
-
-
Method Details
-
toString
-
equals
-
getActivePageName
The name of the active page which rendered the link. This is usually, but not always, the page which contains the component.- Returns:
canonicalized
page name
-
getContainingPageName
The name of the page containing the component that was triggered. Usually this is the same as the active page, but because ofBlock
and similar constructs, a component from other than the active page may be rendered with the active page.- Returns:
canonicalized
page name
-
getNestedComponentId
The path from the containing page down to the component in question. This may be the empty string if the action request is routed directly to the page rather than a component. -
getEventType
The type of event. When not specified in the URL, a default type of "action" (EventConstants.ACTION
) is provided. -
getPageActivationContext
The activation context for the active page, possibly empty (but not null). -
getEventContext
The event context information passed in the URL. Possibly empty (not not null).
-