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 IPageStore
DefaultPageManagerProvider. newAsynchronousStore(IPageStore pageStore)
Store pages asynchronously into the persistent store, if enabled inStoreSettings.isAsynchronous()
.protected IPageStore
DefaultPageManagerProvider. newCachingStore(IPageStore pageStore)
Cache last page non-serialized in the session for fast access.protected IPageStore
DefaultPageManagerProvider. newCryptingStore(IPageStore pageStore)
Crypt all pages, if enabled inStoreSettings.isEncrypted()
.protected IPageStore
DefaultPageManagerProvider. newPersistentStore()
Keep persistent copies of all pages on disk.protected IPageStore
DefaultPageManagerProvider. newRequestStore(IPageStore pageStore)
Keep pages in the request until it is finished.protected IPageStore
DefaultPageManagerProvider. newSerializingStore(IPageStore pageStore)
Serialize pages.Methods in org.apache.wicket with parameters of type IPageStore Modifier and Type Method Description protected IPageStore
DefaultPageManagerProvider. newAsynchronousStore(IPageStore pageStore)
Store pages asynchronously into the persistent store, if enabled inStoreSettings.isAsynchronous()
.protected IPageStore
DefaultPageManagerProvider. newCachingStore(IPageStore pageStore)
Cache last page non-serialized in the session for fast access.protected IPageStore
DefaultPageManagerProvider. newCryptingStore(IPageStore pageStore)
Crypt all pages, if enabled inStoreSettings.isEncrypted()
.protected IPageStore
DefaultPageManagerProvider. newRequestStore(IPageStore pageStore)
Keep pages in the request until it is finished.protected IPageStore
DefaultPageManagerProvider. newSerializingStore(IPageStore pageStore)
Serialize pages. -
Uses of IPageStore in org.apache.wicket.mock
Classes in org.apache.wicket.mock that implement IPageStore Modifier and Type Class Description class
MockPageStore
Methods in org.apache.wicket.mock that return IPageStore Modifier and Type Method Description IPageStore
MockPageManager. getPageStore()
-
Uses of IPageStore in org.apache.wicket.page
Methods in org.apache.wicket.page that return IPageStore Modifier and Type Method Description IPageStore
IPageManager. getPageStore()
Get the storage of pages, optional.IPageStore
PageManager. 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 interface
IPersistentPageStore
A store that can provide information about stored pages.Classes in org.apache.wicket.pageStore that implement IPageStore Modifier and Type Class Description class
AbstractPersistentPageStore
Abstract base class for stores that keep an identifier in the session only, while holding the actual pages in a secondary persistent storage.class
AsynchronousPageStore
Facade forIPageStore
movingAsynchronousPageStore.addPage(IPageContext, IManageablePage)
to a worker thread.class
CachingPageStore
A store of pages that uses anIPageStore
as a cache in front of another store to delegate to.class
CryptingPageStore
A store that encrypts all pages before delegating and vice versa.class
DelegatingPageStore
AnIPageStore
that delegates to another storage.class
DiskPageStore
A storage of pages on disk.class
FilePageStore
A storage of pages in files.class
GroupingPageStore
AnIPageStore
that groups pages.class
InMemoryPageStore
A storage of pages in memory.class
InSessionPageStore
A store keeping a configurable maximum of pages in the session.class
NoopPageStore
A non-storage of pages.class
RequestPageStore
Buffers 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.class
SerializingPageStore
A store that serializes all pages before delegating and vice versa.Methods in org.apache.wicket.pageStore that return IPageStore Modifier and Type Method Description IPageStore
CachingPageStore. getCache()
Get the store used a cache.IPageStore
DelegatingPageStore. getDelegate()
Constructors in org.apache.wicket.pageStore with parameters of type IPageStore Constructor Description AsynchronousPageStore(IPageStore delegate, int capacity)
Construct.CachingPageStore(IPageStore delegate, IPageStore cache)
Constructor.CryptingPageStore(IPageStore delegate, Application application)
DelegatingPageStore(IPageStore delegate)
GroupingPageStore(IPageStore delegate, int maxGroups)
RequestPageStore(IPageStore delegate)
SerializingPageStore(IPageStore delegate, ISerializer serializer)
-