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 SessionSingleSignOnAuthenticationMechanism.getSession(HttpServerExchange exchange) Methods in io.undertow.security.impl with parameters of type SessionModifier and TypeMethodDescriptionvoidAdds the specified session to the set of sessions to which the user is authenticatedbooleanIndicates whether or not the specified session is contained in the set of sessions to which the user is authenticatedvoidRemoves 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 SessionLearningPushHandler.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 voidSessionListener.attributeAdded(Session session, String name, Object value) voidSessionListeners.attributeAdded(Session session, String name, Object value) default voidSessionListener.attributeRemoved(Session session, String name, Object oldValue) voidSessionListeners.attributeRemoved(Session session, String name, Object oldValue) default voidSessionListener.attributeUpdated(Session session, String name, Object newValue, Object oldValue) voidSessionListeners.attributeUpdated(Session session, String name, Object newValue, Object oldValue) default voidSessionListener.sessionCreated(Session session, HttpServerExchange exchange) Called when a session is createdvoidSessionListeners.sessionCreated(Session session, HttpServerExchange exchange) default voidSessionListener.sessionDestroyed(Session session, HttpServerExchange exchange, SessionListener.SessionDestroyedReason reason) Called when a session is destroyedvoidSessionListeners.sessionDestroyed(Session session, HttpServerExchange exchange, SessionListener.SessionDestroyedReason reason) default voidSessionListener.sessionIdChanged(Session session, String oldSessionId) voidSessionListeners.sessionIdChanged(Session session, String oldSessionId) -
Uses of Session in io.undertow.util
Methods in io.undertow.util that return SessionModifier and TypeMethodDescriptionstatic SessionSessions.getOrCreateSession(HttpServerExchange exchange) Gets the active session, creating a new one if one does not existstatic SessionSessions.getSession(HttpServerExchange exchange) Gets the active session, returning null if one is not present.