Uses of Interface
io.jooby.SessionStore
Packages that use SessionStore
-
Uses of SessionStore in io.jooby
Classes in io.jooby that implement SessionStoreModifier and TypeClassDescriptionstatic class
Base class for in-memory session store.Methods in io.jooby that return SessionStoreModifier and TypeMethodDescriptionJooby.getSessionStore()
Router.getSessionStore()
Session store.static SessionStore
SessionStore.memory()
Creates a cookie based session and store data in memory.static SessionStore
SessionStore.memory
(int timeout) Creates a cookie based session and store data in memory.static SessionStore
Creates a cookie based session and store data in memory.static SessionStore
Creates a cookie based session and store data in memory.static SessionStore
SessionStore.memory
(SessionToken token) Creates a session store that save data in memory.static SessionStore
SessionStore.memory
(SessionToken token, Duration timeout) Creates a session store that save data in memory.static SessionStore
Creates a cookie based session and store data in memory.SessionStore.InMemory.setToken
(SessionToken token) Set custom session token.static SessionStore
SessionStore.signed
(SessionToken token, Function<String, Map<String, String>> decoder, Function<Map<String, String>, String> encoder) Creates a session store that save data into Cookie.static SessionStore
Creates a session store that uses (un)signed data.static SessionStore
Creates a session store that uses (un)signed data.static SessionStore
SessionStore.signed
(String secret, SessionToken token) Creates a session store that uses (un)signed data.Methods in io.jooby with parameters of type SessionStoreModifier and TypeMethodDescriptionJooby.setSessionStore
(SessionStore store) Router.setSessionStore
(SessionStore store) Set session store.