Package org.apache.wicket.pageStore
Class DefaultPageContext
- java.lang.Object
-
- org.apache.wicket.pageStore.DefaultPageContext
-
- All Implemented Interfaces:
IPageContext
public class DefaultPageContext extends Object implements IPageContext
Default page context usingRequestCycle.getRequest()
andSession.get()
.- Author:
- Juergen Donnerstag, svenmeier
-
-
Constructor Summary
Constructors Constructor Description DefaultPageContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
getRequestData(MetaDataKey<T> key, Supplier<T> defaultValue)
Get data from the current request cycle.<T extends Serializable>
TgetSessionAttribute(String key, Supplier<T> defaultValue)
Get an attribute from the session.<T extends Serializable>
TgetSessionData(MetaDataKey<T> key, Supplier<T> defaultValue)
Get metadata from the session.String
getSessionId(boolean bind)
Get the identifier of the session.
-
-
-
Constructor Detail
-
DefaultPageContext
public DefaultPageContext()
-
-
Method Detail
-
getSessionId
public String getSessionId(boolean bind)
Description copied from interface:IPageContext
Get the identifier of the session.- Specified by:
getSessionId
in interfaceIPageContext
- Parameters:
bind
- should the session be bound- Returns:
- session id, might be
null
if not bound yet - See Also:
IPageContext.getSessionId(boolean)
-
getSessionAttribute
public <T extends Serializable> T getSessionAttribute(String key, Supplier<T> defaultValue)
Description copied from interface:IPageContext
Get an attribute from the session.
Binds the session if not already set and supplier is notnull
. Sets the session attribute if supplier is notnull
.- Specified by:
getSessionAttribute
in interfaceIPageContext
- Parameters:
key
- keydefaultValue
- default value to use if not present- Returns:
- value
- See Also:
Session.getAttribute(String)
-
getSessionData
public <T extends Serializable> T getSessionData(MetaDataKey<T> key, Supplier<T> defaultValue)
Description copied from interface:IPageContext
Get metadata from the session.
Binds the session if not already set and supplier is notnull
. Sets the session attribute if supplier is notnull
.- Specified by:
getSessionData
in interfaceIPageContext
- Parameters:
key
- keydefaultValue
- optional supplier of a default value to use if not present- Returns:
- value
- See Also:
Session.getMetaData(MetaDataKey)
-
getRequestData
public <T> T getRequestData(MetaDataKey<T> key, Supplier<T> defaultValue)
Description copied from interface:IPageContext
Get data from the current request cycle.- Specified by:
getRequestData
in interfaceIPageContext
- Parameters:
key
- keydefaultValue
- default value to use if not present- See Also:
RequestCycle.getMetaData(MetaDataKey)
-
-