Package org.apache.wicket.pageStore
Interface IPersistedPage
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractPersistentPageStore.PersistedPage
,PageWindowManager.FileWindow
public interface IPersistedPage extends Serializable
Information about a page persisted in anIPersistentPageStore
.Note: This is not an actual page but a representation with essential information only.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getPageId()
Id of page.Bytes
getPageSize()
Size of page.String
getPageType()
Type of page.
-
-
-
Method Detail
-
getPageId
int getPageId()
Id of page.
-
getPageSize
Bytes getPageSize()
Size of page.
-
getPageType
String getPageType()
Type of page.
-
-