Uses of Interface
io.undertow.server.session.Session
-
-
Uses of Session in io.undertow.security.impl
Methods in io.undertow.security.impl that return Session Modifier and Type Method Description SessionSingleSignOn. 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 Session Modifier and Type Method Description voidSingleSignOn. add(Session session)Adds the specified session to the set of sessions to which the user is authenticatedbooleanSingleSignOn. contains(Session session)Indicates whether or not the specified session is contained in the set of sessions to which the user is authenticatedvoidSingleSignOn. 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 SessionLearningPushHandler. 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 SessionInMemorySessionManager. createSession(HttpServerExchange serverExchange, SessionConfig config)SessionSessionManager. createSession(HttpServerExchange serverExchange, SessionConfig sessionCookieConfig)Creates a new session.SessionInMemorySessionManager. getSession(HttpServerExchange serverExchange, SessionConfig config)SessionInMemorySessionManager. getSession(String sessionId)SessionSessionManager. getSession(HttpServerExchange serverExchange, SessionConfig sessionCookieConfig)SessionSessionManager. getSession(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 voidSessionListener. attributeAdded(Session session, String name, Object value)voidSessionListeners. attributeAdded(Session session, String name, Object value)voidSessionListener. attributeRemoved(Session session, String name, Object oldValue)voidSessionListeners. attributeRemoved(Session session, String name, Object oldValue)voidSessionListener. attributeUpdated(Session session, String name, Object newValue, Object oldValue)voidSessionListeners. attributeUpdated(Session session, String name, Object newValue, Object oldValue)voidSessionListener. sessionCreated(Session session, HttpServerExchange exchange)Called when a session is createdvoidSessionListeners. sessionCreated(Session session, HttpServerExchange exchange)voidSessionListener. sessionDestroyed(Session session, HttpServerExchange exchange, SessionListener.SessionDestroyedReason reason)Called when a session is destroyedvoidSessionListeners. sessionDestroyed(Session session, HttpServerExchange exchange, SessionListener.SessionDestroyedReason reason)voidSessionListener. sessionIdChanged(Session session, String oldSessionId)voidSessionListeners. sessionIdChanged(Session session, String oldSessionId) -
Uses of Session in io.undertow.servlet.core
Methods in io.undertow.servlet.core with parameters of type Session Modifier and Type Method Description voidSessionListenerBridge. attributeAdded(Session session, String name, Object value)voidSessionListenerBridge. attributeRemoved(Session session, String name, Object old)voidSessionListenerBridge. attributeUpdated(Session session, String name, Object value, Object old)voidSessionListenerBridge. sessionCreated(Session session, HttpServerExchange exchange)voidSessionListenerBridge. sessionDestroyed(Session session, HttpServerExchange exchange, SessionListener.SessionDestroyedReason reason)voidSessionListenerBridge. sessionIdChanged(Session session, String oldSessionId) -
Uses of Session in io.undertow.servlet.handlers.security
Methods in io.undertow.servlet.handlers.security that return Session Modifier and Type Method Description protected SessionServletSingleSignOnAuthenticationMechanism. getSession(HttpServerExchange exchange)protected SessionCachedAuthenticatedSessionHandler. underlyingSession(HttpSessionImpl httpSession) -
Uses of Session in io.undertow.servlet.spec
Methods in io.undertow.servlet.spec that return Session Modifier and Type Method Description SessionHttpSessionImpl. getSession()SessionHttpSessionImpl.UnwrapSessionAction. run()Methods in io.undertow.servlet.spec with parameters of type Session Modifier and Type Method Description static HttpSessionImplHttpSessionImpl. forSession(Session session, javax.servlet.ServletContext servletContext, boolean newSession) -
Uses of Session in io.undertow.util
Methods in io.undertow.util that return Session Modifier and Type Method Description static 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.
-