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 classBase class for in-memory session store.Methods in io.jooby that return SessionStoreModifier and TypeMethodDescriptionJooby.getSessionStore()Router.getSessionStore()Session store.static SessionStoreSessionStore.memory()Creates a cookie based session and store data in memory.static SessionStoreSessionStore.memory(int timeout) Creates a cookie based session and store data in memory.static SessionStoreCreates a cookie based session and store data in memory.static SessionStoreCreates a cookie based session and store data in memory.static SessionStoreSessionStore.memory(SessionToken token) Creates a session store that save data in memory.static SessionStoreSessionStore.memory(SessionToken token, Duration timeout) Creates a session store that save data in memory.static SessionStoreCreates a cookie based session and store data in memory.SessionStore.InMemory.setToken(SessionToken token) Set custom session token.static SessionStoreSessionStore.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 SessionStoreCreates a session store that uses (un)signed data.static SessionStoreCreates a session store that uses (un)signed data.static SessionStoreSessionStore.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.