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.
 Class<? extends IRequestablePage> getPageClass()
          Returns class of the page.
 IRequestablePage getPageInstance()
          Returns page instance specified by the constructor.
 PageParameters getPageParameters()
          Returns PageParameters of the page.
 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

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

Returns:
page class

detach

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



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