Java org.apache.wicket Session fields, constructors, methods, implement or subclass

Example usage for Java org.apache.wicket Session fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.wicket Session.

The text is from its open source code.

Field

StringSESSION_ATTRIBUTE_NAME
Name of session attribute under which this session is stored

Method

voidbind()
Force binding this session to the application's ISessionStore session store if not already done so.
voiddetach()
Any detach logic for session subclasses.
voiderror(final Serializable message)
Registers an error feedback message for this session
booleanexists()
Checks existence of a Session associated with the current thread.
Sessionget()
Returns session associated to current thread.
SerializablegetAttribute(final String name)
Gets the attribute value with the given name
IAuthorizationStrategygetAuthorizationStrategy()
ClientInfogetClientInfo()
Gets the client info object for this session.
StringgetId()
Gets the unique id for this session from the underlying SessionStore.
LocalegetLocale()
Get this session's locale.
MgetMetaData(final MetaDataKey key)
Gets metadata for this session using the given key.
longgetSizeInBytes()
StringgetStyle()
Get the style (see org.apache.wicket.Session ).
voidinfo(final Serializable message)
Registers an informational feedback message for this session
voidinvalidate()
Invalidates this session at the end of the current request.
booleanisSessionInvalidated()
Whether the session is invalid now, or will be invalidated by the end of the request.
booleanisTemporary()
Whether this session is temporary.
voidreplaceSession()
Replaces the underlying (Web)Session, invalidating the current one and creating a new one.
SessionsetAttribute(String name, Serializable value)
Adds or replaces the attribute with the given name and value.
SessionsetLocale(final Locale locale)
Set the locale for this session.
SessionsetMetaData(final MetaDataKey key, final M object)
Sets the metadata for this session using the given key.