Package org.apache.tapestry5.services
Class PageRenderRequestParameters
- java.lang.Object
-
- org.apache.tapestry5.services.PageRenderRequestParameters
-
public class PageRenderRequestParameters extends Object
Used withPageRenderRequestHandler
andPageRenderRequestFilter
to define the logical page name and activation context for the request.
-
-
Constructor Summary
Constructors Constructor Description PageRenderRequestParameters(String logicalPageName, EventContext activationContext)
Deprecated.PageRenderRequestParameters(String logicalPageName, EventContext activationContext, boolean loopback)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
EventContext
getActivationContext()
String
getLogicalPageName()
Returns a canonicalized version of the page name.boolean
isLoopback()
Is this request a loopback (a request for the same page that rendered it in the first place)?String
toString()
-
-
-
Constructor Detail
-
PageRenderRequestParameters
public PageRenderRequestParameters(String logicalPageName, EventContext activationContext)
Deprecated.
-
PageRenderRequestParameters
public PageRenderRequestParameters(String logicalPageName, EventContext activationContext, boolean loopback)
- Since:
- 5.2.0
-
-
Method Detail
-
getLogicalPageName
public String getLogicalPageName()
Returns a canonicalized version of the page name.
-
getActivationContext
public EventContext getActivationContext()
-
isLoopback
public boolean isLoopback()
Is this request a loopback (a request for the same page that rendered it in the first place)?- Since:
- 5.2.0
- See Also:
TapestryConstants.PAGE_LOOPBACK_PARAMETER_NAME
,PageResetListener
-
-