Uses of Interface
org.apache.wicket.pageStore.IPageStore
-
Packages that use IPageStore Package Description org.apache.wicket The core Wicket package.org.apache.wicket.mock org.apache.wicket.page org.apache.wicket.pageStore -
-
Uses of IPageStore in org.apache.wicket
Methods in org.apache.wicket that return IPageStore Modifier and Type Method Description protected IPageStoreDefaultPageManagerProvider. newAsynchronousStore(IPageStore pageStore)Store pages asynchronously into the persistent store, if enabled inStoreSettings.isAsynchronous().protected IPageStoreDefaultPageManagerProvider. newCryptingStore(IPageStore pageStore)Crypt all pages, if enabled inStoreSettings.isEncrypted().protected IPageStoreDefaultPageManagerProvider. newPersistentStore()Keep persistent copies of all pages on disk.protected IPageStoreDefaultPageManagerProvider. newRequestStore(IPageStore pageStore)Cache pages in the request until it is finished.protected IPageStoreDefaultPageManagerProvider. newSerializingStore(IPageStore pageStore)Serialize pages.protected IPageStoreDefaultPageManagerProvider. newSessionStore(IPageStore pageStore)Cache last page in the session for fast access.Methods in org.apache.wicket with parameters of type IPageStore Modifier and Type Method Description protected IPageStoreDefaultPageManagerProvider. newAsynchronousStore(IPageStore pageStore)Store pages asynchronously into the persistent store, if enabled inStoreSettings.isAsynchronous().protected IPageStoreDefaultPageManagerProvider. newCryptingStore(IPageStore pageStore)Crypt all pages, if enabled inStoreSettings.isEncrypted().protected IPageStoreDefaultPageManagerProvider. newRequestStore(IPageStore pageStore)Cache pages in the request until it is finished.protected IPageStoreDefaultPageManagerProvider. newSerializingStore(IPageStore pageStore)Serialize pages.protected IPageStoreDefaultPageManagerProvider. newSessionStore(IPageStore pageStore)Cache last page in the session for fast access. -
Uses of IPageStore in org.apache.wicket.mock
Classes in org.apache.wicket.mock that implement IPageStore Modifier and Type Class Description classMockPageStoreMethods in org.apache.wicket.mock that return IPageStore Modifier and Type Method Description IPageStoreMockPageManager. getPageStore() -
Uses of IPageStore in org.apache.wicket.page
Methods in org.apache.wicket.page that return IPageStore Modifier and Type Method Description IPageStoreIPageManager. getPageStore()Get the storage of pages, optional.IPageStorePageManager. getPageStore()Constructors in org.apache.wicket.page with parameters of type IPageStore Constructor Description PageManager(IPageStore store) -
Uses of IPageStore in org.apache.wicket.pageStore
Subinterfaces of IPageStore in org.apache.wicket.pageStore Modifier and Type Interface Description interfaceIPersistentPageStoreA store that can provide information about stored pages.Classes in org.apache.wicket.pageStore that implement IPageStore Modifier and Type Class Description classAbstractPersistentPageStoreAbstract base class for stores that keep an identifier in the session only, while holding the actual pages in a secondary persistent storage.classAsynchronousPageStoreFacade forIPageStoremovingAsynchronousPageStore.addPage(IPageContext, IManageablePage)to a worker thread.classCryptingPageStoreA store that encrypts all pages before delegating and vice versa.classDelegatingPageStoreAnIPageStorethat delegates to another storage.classDiskPageStoreA storage of pages on disk.classFilePageStoreA storage of pages in files.classGroupingPageStoreAnIPageStorethat groups pages.classInMemoryPageStoreA storage of pages in memory.classInSessionPageStoreA store keeping a configurable maximum of pages in the session.classNoopPageStoreA non-storage of pages.classRequestPageStoreBuffers storage of added pages until the end of the request, when they are delegated to the next store in the identical order they where added.classSerializingPageStoreA store that serializes all pages before delegating and vice versa.Methods in org.apache.wicket.pageStore that return IPageStore Modifier and Type Method Description IPageStoreDelegatingPageStore. getDelegate()Constructors in org.apache.wicket.pageStore with parameters of type IPageStore Constructor Description AsynchronousPageStore(IPageStore delegate, int capacity)Construct.CryptingPageStore(IPageStore delegate)DelegatingPageStore(IPageStore delegate)GroupingPageStore(IPageStore delegate, int maxGroups)InSessionPageStore(IPageStore delegate, int maxPages)KeepmaxPagesin each session.InSessionPageStore(IPageStore delegate, int maxPages, ISerializer serializer)KeepmaxPagesin each session.InSessionPageStore(IPageStore delegate, org.apache.wicket.util.lang.Bytes maxBytes)Keep page up tomaxBytesin each session.RequestPageStore(IPageStore delegate)SerializingPageStore(IPageStore delegate, ISerializer serializer)
-