Package org.apache.tapestry5.services
Class PageRenderRequestParameters
- java.lang.Object
 - 
- org.apache.tapestry5.services.PageRenderRequestParameters
 
 
- 
public class PageRenderRequestParameters extends Object
Used withPageRenderRequestHandlerandPageRenderRequestFilterto 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 booleanequals(Object obj)EventContextgetActivationContext()StringgetLogicalPageName()Returns a canonicalized version of the page name.booleanisLoopback()Is this request a loopback (a request for the same page that rendered it in the first place)?StringtoString() 
 - 
 
- 
- 
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
 
 - 
 
 -