Uses of Interface
io.undertow.server.session.Session
-
Packages that use Session Package Description io.undertow.security.impl io.undertow.server.handlers io.undertow.server.session io.undertow.util -
-
Uses of Session in io.undertow.security.impl
Methods in io.undertow.security.impl that return Session Modifier and Type Method Description Session
SingleSignOn. 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 Session Modifier and Type Method Description void
SingleSignOn. add(Session session)
Adds the specified session to the set of sessions to which the user is authenticatedboolean
SingleSignOn. contains(Session session)
Indicates whether or not the specified session is contained in the set of sessions to which the user is authenticatedvoid
SingleSignOn. remove(Session session)
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 Session Modifier and Type Method Description protected Session
LearningPushHandler. getSession(HttpServerExchange exchange)
-
Uses of Session in io.undertow.server.session
Methods in io.undertow.server.session that return Session Modifier and Type Method Description Session
InMemorySessionManager. createSession(HttpServerExchange serverExchange, SessionConfig config)
Session
SessionManager. createSession(HttpServerExchange serverExchange, SessionConfig sessionCookieConfig)
Creates a new session.Session
InMemorySessionManager. getSession(HttpServerExchange serverExchange, SessionConfig config)
Session
InMemorySessionManager. getSession(java.lang.String sessionId)
Session
SessionManager. getSession(HttpServerExchange serverExchange, SessionConfig sessionCookieConfig)
Session
SessionManager. getSession(java.lang.String sessionId)
Retrieves a session with the given session idMethods in io.undertow.server.session with parameters of type Session Modifier and Type Method Description default void
SessionListener. attributeAdded(Session session, java.lang.String name, java.lang.Object value)
void
SessionListeners. attributeAdded(Session session, java.lang.String name, java.lang.Object value)
default void
SessionListener. attributeRemoved(Session session, java.lang.String name, java.lang.Object oldValue)
void
SessionListeners. attributeRemoved(Session session, java.lang.String name, java.lang.Object oldValue)
default void
SessionListener. attributeUpdated(Session session, java.lang.String name, java.lang.Object newValue, java.lang.Object oldValue)
void
SessionListeners. attributeUpdated(Session session, java.lang.String name, java.lang.Object newValue, java.lang.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, java.lang.String oldSessionId)
void
SessionListeners. sessionIdChanged(Session session, java.lang.String oldSessionId)
-
Uses of Session in io.undertow.util
Methods in io.undertow.util that return Session Modifier and Type Method Description static 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.
-