Uses of Interface
io.undertow.server.session.Session
Packages that use Session
Package
Description
-
Uses of Session in io.undertow.security.impl
Methods in io.undertow.security.impl that return SessionModifier and TypeMethodDescriptionSingleSignOn.getSession
(SessionManager manager) Returns the session associated with the deployment of the specified session managerprotected Session
SingleSignOnAuthenticationMechanism.getSession
(HttpServerExchange exchange) Methods in io.undertow.security.impl with parameters of type SessionModifier and TypeMethodDescriptionvoid
Adds the specified session to the set of sessions to which the user is authenticatedboolean
Indicates whether or not the specified session is contained in the set of sessions to which the user is authenticatedvoid
Removes the specified session from the set of sessions to which the user is authenticated -
Uses of Session in io.undertow.server.handlers
Methods in io.undertow.server.handlers that return SessionModifier and TypeMethodDescriptionprotected Session
LearningPushHandler.getSession
(HttpServerExchange exchange) -
Uses of Session in io.undertow.server.session
Methods in io.undertow.server.session that return SessionModifier and TypeMethodDescriptionInMemorySessionManager.createSession
(HttpServerExchange serverExchange, SessionConfig config) SessionManager.createSession
(HttpServerExchange serverExchange, SessionConfig sessionCookieConfig) Creates a new session.InMemorySessionManager.getSession
(HttpServerExchange serverExchange, SessionConfig config) InMemorySessionManager.getSession
(String sessionId) SessionManager.getSession
(HttpServerExchange serverExchange, SessionConfig sessionCookieConfig) SessionManager.getSession
(String sessionId) Retrieves a session with the given session idMethods in io.undertow.server.session with parameters of type SessionModifier and TypeMethodDescriptiondefault void
SessionListener.attributeAdded
(Session session, String name, Object value) void
SessionListeners.attributeAdded
(Session session, String name, Object value) default void
SessionListener.attributeRemoved
(Session session, String name, Object oldValue) void
SessionListeners.attributeRemoved
(Session session, String name, Object oldValue) default void
SessionListener.attributeUpdated
(Session session, String name, Object newValue, Object oldValue) void
SessionListeners.attributeUpdated
(Session session, String name, Object newValue, Object oldValue) default void
SessionListener.sessionCreated
(Session session, HttpServerExchange exchange) Called when a session is createdvoid
SessionListeners.sessionCreated
(Session session, HttpServerExchange exchange) default void
SessionListener.sessionDestroyed
(Session session, HttpServerExchange exchange, SessionListener.SessionDestroyedReason reason) Called when a session is destroyedvoid
SessionListeners.sessionDestroyed
(Session session, HttpServerExchange exchange, SessionListener.SessionDestroyedReason reason) default void
SessionListener.sessionIdChanged
(Session session, String oldSessionId) void
SessionListeners.sessionIdChanged
(Session session, String oldSessionId) -
Uses of Session in io.undertow.util
Methods in io.undertow.util that return SessionModifier and TypeMethodDescriptionstatic Session
Sessions.getOrCreateSession
(HttpServerExchange exchange) Gets the active session, creating a new one if one does not existstatic Session
Sessions.getSession
(HttpServerExchange exchange) Gets the active session, returning null if one is not present.