Uses of Class
org.apache.wicket.Session
-
Packages that use Session Package Description org.apache.wicket The core Wicket package.org.apache.wicket.mock org.apache.wicket.protocol.http HTTP implementation.org.apache.wicket.session org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. -
-
Uses of Session in org.apache.wicket
Methods in org.apache.wicket that return Session Modifier and Type Method Description SessionApplication. fetchCreateAndSetSession(RequestCycle requestCycle)static SessionSession. get()Returns session associated to current thread.SessionComponent. getSession()Gets the current Session object.static SessionThreadContext. getSession()abstract SessionApplication. newSession(org.apache.wicket.request.Request request, org.apache.wicket.request.Response response)Creates a new session.SessionSession. setAttribute(java.lang.String name, java.io.Serializable value)Adds or replaces the attribute with the given name and value.SessionSession. setClientInfo(ClientInfo clientInfo)THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.SessionSession. setLocale(java.util.Locale locale)Set the locale for this session.<M extends java.io.Serializable>
SessionSession. setMetaData(MetaDataKey<M> key, M object)Sets the metadata for this session using the given key.SessionSession. setStyle(java.lang.String style)Set the style (seeSession).Methods in org.apache.wicket with parameters of type Session Modifier and Type Method Description default voidISessionListener. onCreated(Session session)Called when a new instance of session is createdvoidSessionListenerCollection. onCreated(Session session)static voidThreadContext. setSession(Session session)Binds the session to current thread. -
Uses of Session in org.apache.wicket.mock
Methods in org.apache.wicket.mock that return Session Modifier and Type Method Description SessionMockApplication. getSession()SessionMockSessionStore. lookup(org.apache.wicket.request.Request request)Methods in org.apache.wicket.mock with parameters of type Session Modifier and Type Method Description voidMockSessionStore. bind(org.apache.wicket.request.Request request, Session newSession)voidMockSessionStore. flushSession(org.apache.wicket.request.Request request, Session session) -
Uses of Session in org.apache.wicket.protocol.http
Subclasses of Session in org.apache.wicket.protocol.http Modifier and Type Class Description classWebSessionA session subclass for the HTTP protocol.Methods in org.apache.wicket.protocol.http that return Session Modifier and Type Method Description SessionWebApplication. newSession(org.apache.wicket.request.Request request, org.apache.wicket.request.Response response) -
Uses of Session in org.apache.wicket.session
Methods in org.apache.wicket.session that return Session Modifier and Type Method Description protected SessionHttpSessionStore. getWicketSession(org.apache.wicket.request.Request request)Reads the WicketSessionfrom theHttpSession's attributeSessionHttpSessionStore. lookup(org.apache.wicket.request.Request request)SessionISessionStore. lookup(org.apache.wicket.request.Request request)Retrieves the session for the provided request from this facade.Methods in org.apache.wicket.session with parameters of type Session Modifier and Type Method Description voidHttpSessionStore. bind(org.apache.wicket.request.Request request, Session newSession)voidISessionStore. bind(org.apache.wicket.request.Request request, Session newSession)Adds the provided new session to this facade using the provided request.voidISessionStore.BindListener. bindingSession(org.apache.wicket.request.Request request, Session newSession)Informs the listener that a session is about to be bound.voidHttpSessionStore. flushSession(org.apache.wicket.request.Request request, Session session)voidISessionStore. flushSession(org.apache.wicket.request.Request request, Session session)Flushes the session.protected voidHttpSessionStore. onBind(org.apache.wicket.request.Request request, Session newSession)Template method that is called when a session is being bound to the session store.protected voidHttpSessionStore. setWicketSession(org.apache.wicket.request.Request request, Session session)Stores the WicketSessionin an attribute in theHttpSessionConstructors in org.apache.wicket.session with parameters of type Session Constructor Description SessionBindingListener(java.lang.String applicationKey, Session wicketSession)Construct. -
Uses of Session in org.apache.wicket.util.tester
Methods in org.apache.wicket.util.tester that return Session Modifier and Type Method Description SessionBaseWicketTester. getSession()
-