Uses of Interface
org.apache.wicket.IPageManagerProvider
-
Packages that use IPageManagerProvider Package Description org.apache.wicket The core Wicket package.org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. -
-
Uses of IPageManagerProvider in org.apache.wicket
Classes in org.apache.wicket that implement IPageManagerProvider Modifier and Type Class Description classDefaultPageManagerProviderA provider of aPageManagermanaging @link IManageablePage}s with a default chain ofIPageStores:RequestPageStorecaching pages until end of the requestInSessionPageStorekeeping the last accessed page in the sessionAsynchronousPageStoremoving storage of pages to an asynchronous worker thread (enabled by default withStoreSettings.isAsynchronous())SerializingPageStoreserializing all pages (so they are available for back-button)CryptingPageStoreencrypting all pages (disabled by default inStoreSettings.isEncrypted())DiskPageStorepersisting all pages, configured according toStoreSettingsAn alternative chain with all pages held in-memory could be:RequestPageStorecaching pages until end of the requestInSessionPageStorekeeping the last accessed page in the sessionAsynchronousPageStoremoving storage of pages to a worker threadSerializingPageStoreserializing all pages (so they are available for back-button)InMemoryPageStorekeeping all pages in memory ...Methods in org.apache.wicket that return IPageManagerProvider Modifier and Type Method Description IPageManagerProviderApplication. getPageManagerProvider()Methods in org.apache.wicket with parameters of type IPageManagerProvider Modifier and Type Method Description ApplicationApplication. setPageManagerProvider(IPageManagerProvider provider)Set the provider of anIPageManager. -
Uses of IPageManagerProvider in org.apache.wicket.util.tester
Methods in org.apache.wicket.util.tester that return IPageManagerProvider Modifier and Type Method Description protected IPageManagerProviderBaseWicketTester. newTestPageManagerProvider()
-