Package org.apache.wicket.pageStore
Class InSessionPageStore.SessionData
- java.lang.Object
-
- org.apache.wicket.pageStore.InSessionPageStore.SessionData
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- InSessionPageStore
protected abstract static class InSessionPageStore.SessionData extends Object implements Serializable
Data kept in theSession
, might get serialized along with its containingHttpSession
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SessionData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(IManageablePage page)
IManageablePage
get(int id)
IManageablePage
remove(int pageId)
void
removeAll()
protected void
removeOldest()
void
supportSessionSerialization(ISerializer serializer)
Call this method if session serialization should be supported, i.e.
-
-
-
Constructor Detail
-
SessionData
protected SessionData()
-
-
Method Detail
-
supportSessionSerialization
public void supportSessionSerialization(ISerializer serializer)
Call this method if session serialization should be supported, i.e. all pages get serialized along with the session.
-
add
public void add(IManageablePage page)
-
removeOldest
protected void removeOldest()
-
remove
public IManageablePage remove(int pageId)
-
removeAll
public void removeAll()
-
get
public IManageablePage get(int id)
-
-