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 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(java.lang.String sessionId)SessionSessionManager. getSession(HttpServerExchange serverExchange, SessionConfig sessionCookieConfig)SessionSessionManager. 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 voidSessionListener. attributeAdded(Session session, java.lang.String name, java.lang.Object value)voidSessionListeners. attributeAdded(Session session, java.lang.String name, java.lang.Object value)default voidSessionListener. attributeRemoved(Session session, java.lang.String name, java.lang.Object oldValue)voidSessionListeners. attributeRemoved(Session session, java.lang.String name, java.lang.Object oldValue)default voidSessionListener. attributeUpdated(Session session, java.lang.String name, java.lang.Object newValue, java.lang.Object oldValue)voidSessionListeners. attributeUpdated(Session session, java.lang.String name, java.lang.Object newValue, java.lang.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, java.lang.String oldSessionId)voidSessionListeners. 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 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.
-