org.apache.wicket.request.handler
Interface IPageProvider

All Known Subinterfaces:
IPageAndComponentProvider
All Known Implementing Classes:
PageAndComponentProvider, PageProvider

public interface IPageProvider

Represents object capable of providing a page instance. In some cases the implementation class might now page class and page parameters without having the actual page instance. Thus it's recommended to call getPageParameters() instead of calling getPageInstance() .getPageParameters(). Same goes for page class.

Author:
Matej Knopp

Method Summary
 void detach()
          Detaches the page if it has been loaded.
 java.lang.Class<? extends IRequestablePage> getPageClass()
          Returns class of the page.
 java.lang.Integer getPageId()
          Returns the page id.
 IRequestablePage getPageInstance()
          Returns page instance specified by the constructor.
 PageParameters getPageParameters()
          Returns PageParameters of the page.
 java.lang.Integer getRenderCount()
          Returns the number of times this page has been rendered.
 boolean isNewPageInstance()
          Returns whether calling getPageInstance() will result in creating new page instance or whether it will be an existing instance (even though it might be pulled from page store).
 

Method Detail

getPageInstance

IRequestablePage getPageInstance()
Returns page instance specified by the constructor.

Returns:
page instance
Throws:
StalePageException - if render count has been specified in constructor and the render count of page does not match the value

getPageParameters

PageParameters getPageParameters()
Returns PageParameters of the page.

Returns:
page parameters

isNewPageInstance

boolean isNewPageInstance()
Returns whether calling getPageInstance() will result in creating new page instance or whether it will be an existing instance (even though it might be pulled from page store).

Returns:
true if calling getPageInstance() will create new page instance, false otherwise.

getPageClass

java.lang.Class<? extends IRequestablePage> getPageClass()
Returns class of the page.

Returns:
page class

getPageId

java.lang.Integer getPageId()
Returns the page id.

Returns:
page id

getRenderCount

java.lang.Integer getRenderCount()
Returns the number of times this page has been rendered.

Returns:
the number of times this page has been rendered.

detach

void detach()
Detaches the page if it has been loaded.



Copyright © 2006-2011 Apache Software Foundation. All Rights Reserved.