| org.apache.tapestry.internal.services.RequestPageCache
All known Subclasses: org.apache.tapestry.internal.services.RequestPageCacheImpl,
RequestPageCache | public interface RequestPageCache (Code) | | Per-thread service that caches page instances for the duration of the request, and is also
responsible for tracking the active page (the page which will ultimately render the response).
|
Method Summary | |
Page | get(String logicalPageName) Gets the page via its page name, in the current locale. |
get | Page get(String logicalPageName)(Code) | | Gets the page via its page name, in the current locale. The page name is resolved to a class
name, which is used to obtain the page (from the page pool).
Parameters: logicalPageName - the name of the page to retrieve (this is the logical page name, not the fullyqualified class name) a page instance reserved for this request throws: IllegalArgumentException - if the name can not be resolved to a page instance |
|
|