Skip navigation links
A B C D E F G H I J L M N O P R S V W 

A

AbstractHttpSessionApplicationInitializer - Class in org.springframework.session.web.context
Registers the DelegatingFilterProxy to use the springSessionRepositoryFilter before any other registered Filter.
AbstractHttpSessionApplicationInitializer() - Constructor for class org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer
Creates a new instance that assumes the Spring Session configuration is loaded by some other means than this class.
AbstractHttpSessionApplicationInitializer(Class<?>...) - Constructor for class org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer
Creates a new instance that will instantiate the ContextLoaderListener with the specified classes.
AbstractSessionEvent - Class in org.springframework.session.events
For SessionRepository implementations that support it, this event is fired when a Session is updated.
AbstractSessionEvent(Object, String) - Constructor for class org.springframework.session.events.AbstractSessionEvent
 
AbstractSessionWebSocketMessageBrokerConfigurer<S extends Session> - Class in org.springframework.session.web.socket.config.annotation
Eases configuration of Web Socket and Spring Session integration.
AbstractSessionWebSocketMessageBrokerConfigurer() - Constructor for class org.springframework.session.web.socket.config.annotation.AbstractSessionWebSocketMessageBrokerConfigurer
 
afterHandshake(ServerHttpRequest, ServerHttpResponse, WebSocketHandler, Exception) - Method in class org.springframework.session.web.socket.server.SessionRepositoryMessageInterceptor
 
afterSessionRepositoryFilter(ServletContext) - Method in class org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer
Invoked after the springSessionRepositoryFilter is added.
appendFilters(ServletContext, Filter...) - Method in class org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer
autoLogin(HttpServletRequest, HttpServletResponse) - Method in class org.springframework.session.security.web.authentication.SpringSessionRememberMeServices
 

B

beforeHandshake(ServerHttpRequest, ServerHttpResponse, WebSocketHandler, Map<String, Object>) - Method in class org.springframework.session.web.socket.server.SessionRepositoryMessageInterceptor
 
beforeSessionRepositoryFilter(ServletContext) - Method in class org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer
Invoked before the springSessionRepositoryFilter is added.

C

changeSessionId() - Method in class org.springframework.session.MapSession
 
changeSessionId() - Method in interface org.springframework.session.Session
Changes the session id.
cleanupExpiredSessions() - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
 
cleanUpExpiredSessions() - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
 
configure(RedisConnection) - Method in class org.springframework.session.data.redis.config.ConfigureNotifyKeyspaceEventsAction
 
configure(RedisConnection) - Method in interface org.springframework.session.data.redis.config.ConfigureRedisAction
 
configureClientInboundChannel(ChannelRegistration) - Method in class org.springframework.session.web.socket.config.annotation.AbstractSessionWebSocketMessageBrokerConfigurer
 
ConfigureNotifyKeyspaceEventsAction - Class in org.springframework.session.data.redis.config
Ensures that Redis Keyspace events for Generic commands and Expired events are enabled.
ConfigureNotifyKeyspaceEventsAction() - Constructor for class org.springframework.session.data.redis.config.ConfigureNotifyKeyspaceEventsAction
 
ConfigureRedisAction - Interface in org.springframework.session.data.redis.config
Allows specifying a strategy for configuring and validating Redis.
configureStompEndpoints(StompEndpointRegistry) - Method in class org.springframework.session.web.socket.config.annotation.AbstractSessionWebSocketMessageBrokerConfigurer
Register STOMP endpoints mapping each to a specific URL and (optionally) enabling and configuring SockJS fallback options with a SessionRepositoryMessageInterceptor automatically added as an interceptor.
configureWebSocketTransport(WebSocketTransportRegistration) - Method in class org.springframework.session.web.socket.config.annotation.AbstractSessionWebSocketMessageBrokerConfigurer
 
CookieHttpSessionStrategy - Class in org.springframework.session.web.http
A HttpSessionStrategy that uses a cookie to obtain the session from.
CookieHttpSessionStrategy() - Constructor for class org.springframework.session.web.http.CookieHttpSessionStrategy
 
CookieSerializer - Interface in org.springframework.session.web.http
Strategy for reading and writing a cookie value to the HttpServletResponse.
CookieSerializer.CookieValue - Class in org.springframework.session.web.http
Contains the information necessary to write a value to the HttpServletResponse.
CookieValue(HttpServletRequest, HttpServletResponse, String) - Constructor for class org.springframework.session.web.http.CookieSerializer.CookieValue
Creates a new instance.
createSession() - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
 
createSession() - Method in class org.springframework.session.hazelcast.HazelcastSessionRepository
 
createSession() - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
 
createSession() - Method in class org.springframework.session.MapReactorSessionRepository
 
createSession() - Method in class org.springframework.session.MapSessionRepository
 
createSession() - Method in interface org.springframework.session.ReactorSessionRepository
Creates a new Session that is capable of being persisted by this ReactorSessionRepository.
createSession() - Method in interface org.springframework.session.SessionRepository
Creates a new Session that is capable of being persisted by this SessionRepository.

D

decorate(WebSocketHandler) - Method in class org.springframework.session.web.socket.handler.WebSocketConnectHandlerDecoratorFactory
 
DEFAULT_FILTER_NAME - Static variable in class org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer
The default name for Spring Session's repository filter.
DEFAULT_MAX_INACTIVE_INTERVAL_SECONDS - Static variable in class org.springframework.session.MapSession
DEFAULT_ORDER - Static variable in class org.springframework.session.web.http.SessionRepositoryFilter
The default filter order.
DEFAULT_TABLE_NAME - Static variable in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
The default name of database table used by Spring Session to store sessions.
DefaultCookieSerializer - Class in org.springframework.session.web.http
The default implementation of CookieSerializer.
DefaultCookieSerializer() - Constructor for class org.springframework.session.web.http.DefaultCookieSerializer
 
delete(String) - Method in class org.springframework.session.MapReactorSessionRepository
 
delete(String) - Method in interface org.springframework.session.ReactorSessionRepository
Deletes the Session with the given Session.getId() or does nothing if the Session is not found.
deleteById(String) - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
 
deleteById(String) - Method in class org.springframework.session.hazelcast.HazelcastSessionRepository
 
deleteById(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
 
deleteById(String) - Method in class org.springframework.session.MapSessionRepository
 
deleteById(String) - Method in interface org.springframework.session.SessionRepository
Deletes the Session with the given Session.getId() or does nothing if the Session is not found.
doFilterInternal(HttpServletRequest, HttpServletResponse, FilterChain) - Method in class org.springframework.session.web.http.SessionRepositoryFilter
 

E

EnableHazelcastHttpSession - Annotation Type in org.springframework.session.hazelcast.config.annotation.web.http
Add this annotation to a @Configuration class to expose the SessionRepositoryFilter as a bean named "springSessionRepositoryFilter" and backed by Hazelcast.
EnableJdbcHttpSession - Annotation Type in org.springframework.session.jdbc.config.annotation.web.http
Add this annotation to an @Configuration class to expose the SessionRepositoryFilter as a bean named "springSessionRepositoryFilter" and backed by a relational database.
EnableRedisHttpSession - Annotation Type in org.springframework.session.data.redis.config.annotation.web.http
Add this annotation to an @Configuration class to expose the SessionRepositoryFilter as a bean named "springSessionRepositoryFilter" and backed by Redis.
enableRedisKeyspaceNotificationsInitializer(RedisConnectionFactory) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
EnableSpringHttpSession - Annotation Type in org.springframework.session.config.annotation.web.http
Add this annotation to an @Configuration class to expose the SessionRepositoryFilter as a bean named "springSessionRepositoryFilter" and backed by a user provided implementation of SessionRepository.
encodeURL(String, String) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
 
encodeURL(String, String) - Method in interface org.springframework.session.web.http.HttpSessionManager
Provides the ability to encode the URL for a given session alias.
entryAdded(EntryEvent<String, MapSession>) - Method in class org.springframework.session.hazelcast.HazelcastSessionRepository
 
entryEvicted(EntryEvent<String, MapSession>) - Method in class org.springframework.session.hazelcast.HazelcastSessionRepository
 
entryRemoved(EntryEvent<String, MapSession>) - Method in class org.springframework.session.hazelcast.HazelcastSessionRepository
 
equals(Object) - Method in class org.springframework.session.MapSession
 
extract(MapSession, String, ValueCollector) - Method in class org.springframework.session.hazelcast.PrincipalNameExtractor
 

F

findById(String) - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
 
findById(String) - Method in class org.springframework.session.hazelcast.HazelcastSessionRepository
 
findById(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
 
findById(String) - Method in class org.springframework.session.MapReactorSessionRepository
 
findById(String) - Method in class org.springframework.session.MapSessionRepository
 
findById(String) - Method in interface org.springframework.session.ReactorSessionRepository
Gets the Session by the Session.getId() or null if no Session is found.
findById(String) - Method in interface org.springframework.session.SessionRepository
Gets the Session by the Session.getId() or null if no Session is found.
findByIndexNameAndIndexValue(String, String) - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
 
findByIndexNameAndIndexValue(String, String) - Method in interface org.springframework.session.FindByIndexNameSessionRepository
Find a Map of the session id to the Session of all sessions that contain the session attribute with the name FindByIndexNameSessionRepository.PRINCIPAL_NAME_INDEX_NAME and the value of the specified principal name.
findByIndexNameAndIndexValue(String, String) - Method in class org.springframework.session.hazelcast.HazelcastSessionRepository
 
findByIndexNameAndIndexValue(String, String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
 
FindByIndexNameSessionRepository<S extends Session> - Interface in org.springframework.session
Extends a basic SessionRepository to allow finding a session id by the principal name.

G

getAllPrincipals() - Method in class org.springframework.session.security.SpringSessionBackedSessionRegistry
 
getAllSessions(Object, boolean) - Method in class org.springframework.session.security.SpringSessionBackedSessionRegistry
 
getAttribute(String) - Method in class org.springframework.session.MapSession
 
getAttribute(String) - Method in interface org.springframework.session.Session
Gets the Object associated with the specified name or null if no Object is associated to that name.
getAttributeNames() - Method in class org.springframework.session.MapSession
 
getAttributeNames() - Method in interface org.springframework.session.Session
Gets the attribute names that have a value associated with it.
getAttributeOrDefault(String, T) - Method in interface org.springframework.session.Session
Return the session attribute value, or a default, fallback value.
getCookieValue() - Method in class org.springframework.session.web.http.CookieSerializer.CookieValue
The value to be written.
getCreationTime() - Method in class org.springframework.session.MapSession
 
getCreationTime() - Method in interface org.springframework.session.Session
Gets the time when this session was created.
getCurrentSessionAlias(HttpServletRequest) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
 
getCurrentSessionAlias(HttpServletRequest) - Method in interface org.springframework.session.web.http.HttpSessionManager
Gets the current session's alias from the HttpServletRequest.
getDispatcherWebApplicationContextSuffix() - Method in class org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer
Return the <servlet-name> to use the DispatcherServlet's WebApplicationContext to find the DelegatingFilterProxy or null to use the parent ApplicationContext.
getId() - Method in class org.springframework.session.MapSession
 
getId() - Method in interface org.springframework.session.Session
Gets a unique string that identifies the Session.
getLastAccessedTime() - Method in class org.springframework.session.MapSession
 
getLastAccessedTime() - Method in interface org.springframework.session.Session
Gets the last time this Session was accessed.
getMaxInactiveInterval() - Method in class org.springframework.session.MapSession
 
getMaxInactiveInterval() - Method in interface org.springframework.session.Session
Gets the maximum inactive interval between requests before this session will be invalidated.
getNewSessionAlias(HttpServletRequest) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
 
getNewSessionAlias(HttpServletRequest) - Method in interface org.springframework.session.web.http.HttpSessionManager
Gets a new and unique Session alias.
getRequest() - Method in class org.springframework.session.web.http.CookieSerializer.CookieValue
Gets the request to use.
getRequestedSessionId(HttpServletRequest) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
 
getRequestedSessionId(HttpServletRequest) - Method in class org.springframework.session.web.http.HeaderHttpSessionStrategy
 
getRequestedSessionId(HttpServletRequest) - Method in interface org.springframework.session.web.http.HttpSessionStrategy
Obtains the requested session id from the provided HttpServletRequest.
getRequiredAttribute(String) - Method in interface org.springframework.session.Session
Return the session attribute value or if not present raise an IllegalArgumentException.
getResponse() - Method in class org.springframework.session.web.http.CookieSerializer.CookieValue
Gets the response to write to.
getSession() - Method in class org.springframework.session.events.AbstractSessionEvent
Gets the Session that was destroyed.
getSession(ServerWebExchange) - Method in class org.springframework.session.web.server.session.SpringSessionWebSessionManager
 
getSessionCreatedChannelPrefix() - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
Gets the prefix for the channel that SessionCreatedEvent are published to.
getSessionDispatcherTypes() - Method in class org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer
Get the DispatcherType for the springSessionRepositoryFilter.
getSessionId() - Method in class org.springframework.session.events.AbstractSessionEvent
 
getSessionId(Map<String, Object>) - Static method in class org.springframework.session.web.socket.server.SessionRepositoryMessageInterceptor
 
getSessionIds(HttpServletRequest) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
 
getSessionIds(HttpServletRequest) - Method in interface org.springframework.session.web.http.HttpSessionManager
Gets a mapping of the session alias to the session id from the HttpServletRequest.
getSessionInformation(String) - Method in class org.springframework.session.security.SpringSessionBackedSessionRegistry
 
getWebSocketSession() - Method in class org.springframework.session.web.socket.events.SessionConnectEvent
 

H

handleCreated(Map<Object, Object>, String) - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
 
hashCode() - Method in class org.springframework.session.MapSession
 
HazelcastFlushMode - Enum in org.springframework.session.hazelcast
Specifies when to write to the backing Hazelcast instance.
HazelcastHttpSessionConfiguration - Class in org.springframework.session.hazelcast.config.annotation.web.http
Exposes the SessionRepositoryFilter as a bean named "springSessionRepositoryFilter".
HazelcastHttpSessionConfiguration() - Constructor for class org.springframework.session.hazelcast.config.annotation.web.http.HazelcastHttpSessionConfiguration
 
HazelcastSessionRepository - Class in org.springframework.session.hazelcast
A SessionRepository implementation that stores sessions in Hazelcast's distributed IMap.
HazelcastSessionRepository(IMap<String, MapSession>) - Constructor for class org.springframework.session.hazelcast.HazelcastSessionRepository
 
HeaderHttpSessionStrategy - Class in org.springframework.session.web.http
A HttpSessionStrategy that uses a header to obtain the session from.
HeaderHttpSessionStrategy() - Constructor for class org.springframework.session.web.http.HeaderHttpSessionStrategy
 
HttpSessionManager - Interface in org.springframework.session.web.http
Allows managing a mapping of alias to the session id for having multiple active sessions at the same time.
HttpSessionStrategy - Interface in org.springframework.session.web.http
A strategy for mapping HTTP request and responses to a Session.

I

init() - Method in class org.springframework.session.config.annotation.web.http.SpringHttpSessionConfiguration
 
insertFilters(ServletContext, Filter...) - Method in class org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer
Inserts the provided Filters before existing Filters using default generated names, AbstractHttpSessionApplicationInitializer.getSessionDispatcherTypes(), and AbstractHttpSessionApplicationInitializer.isAsyncSessionSupported().
INVALID_SESSION_ID_ATTR - Static variable in class org.springframework.session.web.http.SessionRepositoryFilter
Invalid session id (not backed by the session repository) request attribute name.
isAsyncSessionSupported() - Method in class org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer
Determine if the springSessionRepositoryFilter should be marked as supporting asynch.
isExpired() - Method in class org.springframework.session.MapSession
 
isExpired() - Method in interface org.springframework.session.Session
Returns true if the session is expired.

J

JdbcHttpSessionConfiguration - Class in org.springframework.session.jdbc.config.annotation.web.http
Spring @Configuration class used to configure and initialize a JDBC based HttpSession provider implementation in Spring Session.
JdbcHttpSessionConfiguration() - Constructor for class org.springframework.session.jdbc.config.annotation.web.http.JdbcHttpSessionConfiguration
 
JdbcOperationsSessionRepository - Class in org.springframework.session.jdbc
A SessionRepository implementation that uses Spring's JdbcOperations to store sessions in a relational database.
JdbcOperationsSessionRepository(DataSource, PlatformTransactionManager) - Constructor for class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Create a new JdbcOperationsSessionRepository instance which uses the default JdbcOperations to manage sessions.
JdbcOperationsSessionRepository(JdbcOperations, PlatformTransactionManager) - Constructor for class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Create a new JdbcOperationsSessionRepository instance which uses the provided JdbcOperations to manage sessions.

L

loginFail(HttpServletRequest, HttpServletResponse) - Method in class org.springframework.session.security.web.authentication.SpringSessionRememberMeServices
 
loginSuccess(HttpServletRequest, HttpServletResponse, Authentication) - Method in class org.springframework.session.security.web.authentication.SpringSessionRememberMeServices
 
logout(HttpServletRequest, HttpServletResponse, Authentication) - Method in class org.springframework.session.security.web.authentication.SpringSessionRememberMeServices
 

M

MapReactorSessionRepository - Class in org.springframework.session
A SessionRepository backed by a Map and that uses a MapSession.
MapReactorSessionRepository() - Constructor for class org.springframework.session.MapReactorSessionRepository
Creates an instance backed by a ConcurrentHashMap.
MapReactorSessionRepository(Map<String, Session>) - Constructor for class org.springframework.session.MapReactorSessionRepository
Creates a new instance backed by the provided Map.
MapReactorSessionRepository(Session...) - Constructor for class org.springframework.session.MapReactorSessionRepository
Creates a new instance backed by the provided Map.
MapReactorSessionRepository(Iterable<Session>) - Constructor for class org.springframework.session.MapReactorSessionRepository
Creates a new instance backed by the provided Map.
MapSession - Class in org.springframework.session
A Session implementation that is backed by a Map.
MapSession() - Constructor for class org.springframework.session.MapSession
Creates a new instance with a secure randomly generated identifier.
MapSession(String) - Constructor for class org.springframework.session.MapSession
Creates a new instance with the specified id.
MapSession(Session) - Constructor for class org.springframework.session.MapSession
Creates a new instance from the provided Session.
MapSessionRepository - Class in org.springframework.session
A SessionRepository backed by a Map and that uses a MapSession.
MapSessionRepository() - Constructor for class org.springframework.session.MapSessionRepository
Creates an instance backed by a ConcurrentHashMap.
MapSessionRepository(Map<String, Session>) - Constructor for class org.springframework.session.MapSessionRepository
Creates a new instance backed by the provided Map.
MultiHttpSessionStrategy - Interface in org.springframework.session.web.http
Some HttpSessionStrategy may also want to further customize HttpServletRequest and HttpServletResponse objects.

N

name(Object) - Method in class org.springframework.session.security.SpringSessionBackedSessionRegistry
Derives a String name for the given principal.
NO_OP - Static variable in interface org.springframework.session.data.redis.config.ConfigureRedisAction
A do nothing implementation of ConfigureRedisAction.

O

onApplicationEvent(AbstractSessionEvent) - Method in class org.springframework.session.web.http.SessionEventHttpSessionListenerAdapter
 
onApplicationEvent(ApplicationEvent) - Method in class org.springframework.session.web.socket.handler.WebSocketRegistryListener
 
onInvalidateSession(HttpServletRequest, HttpServletResponse) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
 
onInvalidateSession(HttpServletRequest, HttpServletResponse) - Method in class org.springframework.session.web.http.HeaderHttpSessionStrategy
 
onInvalidateSession(HttpServletRequest, HttpServletResponse) - Method in interface org.springframework.session.web.http.HttpSessionStrategy
This method is invoked when a session is invalidated and should inform a client that the session id is no longer valid.
onMessage(Message, byte[]) - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
 
onNewSession(Session, HttpServletRequest, HttpServletResponse) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
 
onNewSession(Session, HttpServletRequest, HttpServletResponse) - Method in class org.springframework.session.web.http.HeaderHttpSessionStrategy
 
onNewSession(Session, HttpServletRequest, HttpServletResponse) - Method in interface org.springframework.session.web.http.HttpSessionStrategy
This method is invoked when a new session is created and should inform a client what the new session id is.
onStartup(ServletContext) - Method in class org.springframework.session.web.context.AbstractHttpSessionApplicationInitializer
 
org.springframework.session - package org.springframework.session
 
org.springframework.session.config.annotation.web.http - package org.springframework.session.config.annotation.web.http
 
org.springframework.session.data.redis - package org.springframework.session.data.redis
 
org.springframework.session.data.redis.config - package org.springframework.session.data.redis.config
 
org.springframework.session.data.redis.config.annotation.web.http - package org.springframework.session.data.redis.config.annotation.web.http
 
org.springframework.session.events - package org.springframework.session.events
 
org.springframework.session.hazelcast - package org.springframework.session.hazelcast
 
org.springframework.session.hazelcast.config.annotation.web.http - package org.springframework.session.hazelcast.config.annotation.web.http
 
org.springframework.session.jdbc - package org.springframework.session.jdbc
 
org.springframework.session.jdbc.config.annotation.web.http - package org.springframework.session.jdbc.config.annotation.web.http
 
org.springframework.session.security - package org.springframework.session.security
 
org.springframework.session.security.web.authentication - package org.springframework.session.security.web.authentication
 
org.springframework.session.web.context - package org.springframework.session.web.context
 
org.springframework.session.web.http - package org.springframework.session.web.http
 
org.springframework.session.web.server.session - package org.springframework.session.web.server.session
Spring Session reactive web support.
org.springframework.session.web.socket.config.annotation - package org.springframework.session.web.socket.config.annotation
 
org.springframework.session.web.socket.events - package org.springframework.session.web.socket.events
 
org.springframework.session.web.socket.handler - package org.springframework.session.web.socket.handler
 
org.springframework.session.web.socket.server - package org.springframework.session.web.socket.server
 

P

preSend(Message<?>, MessageChannel) - Method in class org.springframework.session.web.socket.server.SessionRepositoryMessageInterceptor
 
PRINCIPAL_NAME_ATTRIBUTE - Static variable in class org.springframework.session.hazelcast.HazelcastSessionRepository
The principal name custom attribute name.
PRINCIPAL_NAME_INDEX_NAME - Static variable in interface org.springframework.session.FindByIndexNameSessionRepository
A common session attribute that contains the current principal name (i.e.
PrincipalNameExtractor - Class in org.springframework.session.hazelcast
Hazelcast ValueExtractor responsible for extracting principal name from the MapSession.
PrincipalNameExtractor() - Constructor for class org.springframework.session.hazelcast.PrincipalNameExtractor
 
propertySourcesPlaceholderConfigurer() - Static method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
Property placeholder to process the @Scheduled annotation.
propertySourcesPlaceholderConfigurer() - Static method in class org.springframework.session.jdbc.config.annotation.web.http.JdbcHttpSessionConfiguration
Property placeholder to process the @Scheduled annotation.

R

ReactorSessionRepository<S extends Session> - Interface in org.springframework.session
A repository interface for managing Session instances.
readCookieValues(HttpServletRequest) - Method in interface org.springframework.session.web.http.CookieSerializer
Reads all the matching cookies from the HttpServletRequest.
readCookieValues(HttpServletRequest) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
 
RedisFlushMode - Enum in org.springframework.session.data.redis
Specifies when to write to the backing Redis instance.
RedisHttpSessionConfiguration - Class in org.springframework.session.data.redis.config.annotation.web.http
Exposes the SessionRepositoryFilter as a bean named "springSessionRepositoryFilter".
RedisHttpSessionConfiguration() - Constructor for class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
redisMessageListenerContainer(RedisConnectionFactory, RedisOperationsSessionRepository) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
RedisOperationsSessionRepository - Class in org.springframework.session.data.redis
A SessionRepository that is implemented using Spring Data's RedisOperations.
RedisOperationsSessionRepository(RedisConnectionFactory) - Constructor for class org.springframework.session.data.redis.RedisOperationsSessionRepository
Allows creating an instance and uses a default RedisOperations for both managing the session and the expirations.
RedisOperationsSessionRepository(RedisOperations<Object, Object>) - Constructor for class org.springframework.session.data.redis.RedisOperationsSessionRepository
Creates a new instance.
refreshLastRequest(String) - Method in class org.springframework.session.security.SpringSessionBackedSessionRegistry
 
registerNewSession(String, Object) - Method in class org.springframework.session.security.SpringSessionBackedSessionRegistry
 
registerStompEndpoints(StompEndpointRegistry) - Method in class org.springframework.session.web.socket.config.annotation.AbstractSessionWebSocketMessageBrokerConfigurer
 
REMEMBER_ME_LOGIN_ATTR - Static variable in class org.springframework.session.security.web.authentication.SpringSessionRememberMeServices
Remember-me login request attribute name.
rememberMeRequested(HttpServletRequest, String) - Method in class org.springframework.session.security.web.authentication.SpringSessionRememberMeServices
Allows customization of whether a remember-me login has been requested.
removeAttribute(String) - Method in class org.springframework.session.MapSession
 
removeAttribute(String) - Method in interface org.springframework.session.Session
Removes the attribute with the provided attribute name.
removeSessionInformation(String) - Method in class org.springframework.session.security.SpringSessionBackedSessionRegistry
 
RequestResponsePostProcessor - Interface in org.springframework.session.web.http
Allows customizing the HttpServletRequest and/or the HttpServletResponse.

S

save(RedisOperationsSessionRepository.RedisSession) - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
 
save(HazelcastSessionRepository.HazelcastSession) - Method in class org.springframework.session.hazelcast.HazelcastSessionRepository
 
save(JdbcOperationsSessionRepository.JdbcSession) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
 
save(MapSession) - Method in class org.springframework.session.MapReactorSessionRepository
 
save(MapSession) - Method in class org.springframework.session.MapSessionRepository
 
save(S) - Method in interface org.springframework.session.ReactorSessionRepository
Ensures the Session created by ReactorSessionRepository.createSession() is saved.
save(S) - Method in interface org.springframework.session.SessionRepository
Ensures the Session created by SessionRepository.createSession() is saved.
Session - Interface in org.springframework.session
Provides a way to identify a user in an agnostic way.
SESSION_REPOSITORY_ATTR - Static variable in class org.springframework.session.web.http.SessionRepositoryFilter
The session repository request attribute name.
SessionConnectEvent - Class in org.springframework.session.web.socket.events
Similar to Spring SessionConnectEvent except that it provides access to the WebSocketSession to allow mapping the Spring Session to the WebSocketSession.
SessionConnectEvent(Object, WebSocketSession) - Constructor for class org.springframework.session.web.socket.events.SessionConnectEvent
 
SessionCreatedEvent - Class in org.springframework.session.events
For SessionRepository implementations that support it, this event is fired when a Session is created.
SessionCreatedEvent(Object, String) - Constructor for class org.springframework.session.events.SessionCreatedEvent
 
SessionCreatedEvent(Object, Session) - Constructor for class org.springframework.session.events.SessionCreatedEvent
Create a new SessionCreatedEvent.
SessionDeletedEvent - Class in org.springframework.session.events
For SessionRepository implementations that support it, this event is fired when a Session is destroyed via deletion.
SessionDeletedEvent(Object, String) - Constructor for class org.springframework.session.events.SessionDeletedEvent
 
SessionDeletedEvent(Object, Session) - Constructor for class org.springframework.session.events.SessionDeletedEvent
 
SessionDestroyedEvent - Class in org.springframework.session.events
Base class for events fired when a Session is destroyed explicitly.
SessionDestroyedEvent(Object, String) - Constructor for class org.springframework.session.events.SessionDestroyedEvent
 
SessionDestroyedEvent(Object, Session) - Constructor for class org.springframework.session.events.SessionDestroyedEvent
Create a new SessionDestroyedEvent.
sessionEventHttpSessionListenerAdapter() - Method in class org.springframework.session.config.annotation.web.http.SpringHttpSessionConfiguration
 
SessionEventHttpSessionListenerAdapter - Class in org.springframework.session.web.http
Receives SessionDestroyedEvent and SessionCreatedEvent and translates them into HttpSessionEvent and submits the HttpSessionEvent to every registered HttpSessionListener.
SessionEventHttpSessionListenerAdapter(List<HttpSessionListener>) - Constructor for class org.springframework.session.web.http.SessionEventHttpSessionListenerAdapter
 
SessionExpiredEvent - Class in org.springframework.session.events
For SessionRepository implementations that support it, this event is fired when a Session is destroyed via expiration.
SessionExpiredEvent(Object, String) - Constructor for class org.springframework.session.events.SessionExpiredEvent
 
SessionExpiredEvent(Object, Session) - Constructor for class org.springframework.session.events.SessionExpiredEvent
 
sessionRedisTemplate(RedisConnectionFactory) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
sessionRepository(RedisOperations<Object, Object>, ApplicationEventPublisher) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
sessionRepository(HazelcastInstance, ApplicationEventPublisher) - Method in class org.springframework.session.hazelcast.config.annotation.web.http.HazelcastHttpSessionConfiguration
 
sessionRepository(JdbcOperations, PlatformTransactionManager) - Method in class org.springframework.session.jdbc.config.annotation.web.http.JdbcHttpSessionConfiguration
 
SessionRepository<S extends Session> - Interface in org.springframework.session
A repository interface for managing Session instances.
SessionRepositoryFilter<S extends Session> - Class in org.springframework.session.web.http
Switches the HttpSession implementation to be backed by a Session.
SessionRepositoryFilter(SessionRepository<S>) - Constructor for class org.springframework.session.web.http.SessionRepositoryFilter
Creates a new instance.
sessionRepositoryInterceptor() - Method in class org.springframework.session.web.socket.config.annotation.AbstractSessionWebSocketMessageBrokerConfigurer
 
SessionRepositoryMessageInterceptor<S extends Session> - Class in org.springframework.session.web.socket.server
Acts as a ChannelInterceptor and a HandshakeInterceptor to ensure the Session.getLastAccessedTime() is up to date.
SessionRepositoryMessageInterceptor(SessionRepository<S>) - Constructor for class org.springframework.session.web.socket.server.SessionRepositoryMessageInterceptor
Creates a new instance.
setAlwaysRemember(boolean) - Method in class org.springframework.session.security.web.authentication.SpringSessionRememberMeServices
 
setApplicationContext(ApplicationContext) - Method in class org.springframework.session.config.annotation.web.http.SpringHttpSessionConfiguration
 
setApplicationEventPublisher(ApplicationEventPublisher) - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
Sets the ApplicationEventPublisher that is used to publish SessionDestroyedEvent.
setApplicationEventPublisher(ApplicationEventPublisher) - Method in class org.springframework.session.hazelcast.HazelcastSessionRepository
Sets the ApplicationEventPublisher that is used to publish session events.
setAttribute(String, Object) - Method in class org.springframework.session.MapSession
 
setAttribute(String, Object) - Method in interface org.springframework.session.Session
Sets the attribute value for the provided attribute name.
setBeanClassLoader(ClassLoader) - Method in class org.springframework.session.jdbc.config.annotation.web.http.JdbcHttpSessionConfiguration
 
setClock(Clock) - Method in class org.springframework.session.web.server.session.SpringSessionWebSessionManager
Configure the Clock to use to set lastAccessTime on every created session and to calculate if it is expired.
setConfigureRedisAction(ConfigureRedisAction) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
Sets the action to perform for configuring Redis.
setConversionService(ConversionService) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Sets the ConversionService to use.
setCookieMaxAge(int) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
Sets the maxAge property of the Cookie.
setCookieName(String) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
 
setCookiePath(String) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
Sets the path of the Cookie.
setCookieSerializer(CookieSerializer) - Method in class org.springframework.session.config.annotation.web.http.SpringHttpSessionConfiguration
 
setCookieSerializer(CookieSerializer) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
Sets the CookieSerializer to be used.
setCreateSessionAttributeQuery(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Set the custom SQL query used to create the session attribute.
setCreateSessionQuery(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Set the custom SQL query used to create the session.
setCreationTime(Instant) - Method in class org.springframework.session.MapSession
Sets the time that this Session was created.
setDefaultMaxInactiveInterval(int) - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
Sets the maximum inactive interval in seconds between requests before newly created sessions will be invalidated.
setDefaultMaxInactiveInterval(Integer) - Method in class org.springframework.session.hazelcast.HazelcastSessionRepository
Set the maximum inactive interval in seconds between requests before newly created sessions will be invalidated.
setDefaultMaxInactiveInterval(Integer) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Set the maximum inactive interval in seconds between requests before newly created sessions will be invalidated.
setDefaultMaxInactiveInterval(int) - Method in class org.springframework.session.MapReactorSessionRepository
If non-null, this value is used to override Session.setMaxInactiveInterval(Duration).
setDefaultMaxInactiveInterval(int) - Method in class org.springframework.session.MapSessionRepository
If non-null, this value is used to override Session.setMaxInactiveInterval(Duration).
setDefaultRedisSerializer(RedisSerializer<Object>) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
setDefaultSerializer(RedisSerializer<Object>) - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
Sets the default redis serializer.
setDeleteSessionAttributeQuery(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Set the custom SQL query used to delete the session attribute.
setDeleteSessionQuery(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Set the custom SQL query used to delete the session.
setDeleteSessionsByLastAccessTimeQuery(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Set the custom SQL query used to delete the sessions by last access time.
setDeserializationDelimiter(String) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
Sets the delimiter between a session alias and a session id when deserializing a cookie.
setDomainName(String) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
Sets an explicit Domain Name.
setDomainNamePattern(String) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
Sets a case insensitive pattern used to extract the domain name from the ServletRequest.getServerName().
setEmbeddedValueResolver(StringValueResolver) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
setEmbeddedValueResolver(StringValueResolver) - Method in class org.springframework.session.jdbc.config.annotation.web.http.JdbcHttpSessionConfiguration
 
setGetSessionQuery(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Set the custom SQL query used to retrieve the session.
setHazelcastFlushMode(HazelcastFlushMode) - Method in class org.springframework.session.hazelcast.config.annotation.web.http.HazelcastHttpSessionConfiguration
 
setHazelcastFlushMode(HazelcastFlushMode) - Method in class org.springframework.session.hazelcast.HazelcastSessionRepository
Sets the Hazelcast flush mode.
setHeaderName(String) - Method in class org.springframework.session.web.http.HeaderHttpSessionStrategy
The name of the header to obtain the session id from.
setHttpSessionListeners(List<HttpSessionListener>) - Method in class org.springframework.session.config.annotation.web.http.SpringHttpSessionConfiguration
 
setHttpSessionStrategy(HttpSessionStrategy) - Method in class org.springframework.session.config.annotation.web.http.SpringHttpSessionConfiguration
 
setHttpSessionStrategy(HttpSessionStrategy) - Method in class org.springframework.session.web.http.SessionRepositoryFilter
Sets the HttpSessionStrategy to be used.
setHttpSessionStrategy(MultiHttpSessionStrategy) - Method in class org.springframework.session.web.http.SessionRepositoryFilter
Sets the MultiHttpSessionStrategy to be used.
setId(String) - Method in class org.springframework.session.MapSession
Sets the identifier for this Session.
setImportMetadata(AnnotationMetadata) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
setImportMetadata(AnnotationMetadata) - Method in class org.springframework.session.hazelcast.config.annotation.web.http.HazelcastHttpSessionConfiguration
 
setImportMetadata(AnnotationMetadata) - Method in class org.springframework.session.jdbc.config.annotation.web.http.JdbcHttpSessionConfiguration
 
setJvmRoute(String) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
Used to identify which JVM to route to for session affinity.
setLastAccessedTime(Instant) - Method in class org.springframework.session.MapSession
 
setLastAccessedTime(Instant) - Method in interface org.springframework.session.Session
Sets the last accessed time.
setListSessionsByPrincipalNameQuery(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Set the custom SQL query used to retrieve the sessions by principal name.
setLobHandler(LobHandler) - Method in class org.springframework.session.jdbc.config.annotation.web.http.JdbcHttpSessionConfiguration
 
setLobHandler(LobHandler) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
 
setMatchingMessageTypes(Set<SimpMessageType>) - Method in class org.springframework.session.web.socket.server.SessionRepositoryMessageInterceptor
Sets the SimpMessageType to match on.
setMaxInactiveInterval(Duration) - Method in class org.springframework.session.MapSession
 
setMaxInactiveInterval(Duration) - Method in interface org.springframework.session.Session
Sets the maximum inactive interval between requests before this session will be invalidated.
setMaxInactiveIntervalInSeconds(int) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
setMaxInactiveIntervalInSeconds(int) - Method in class org.springframework.session.hazelcast.config.annotation.web.http.HazelcastHttpSessionConfiguration
 
setMaxInactiveIntervalInSeconds(Integer) - Method in class org.springframework.session.jdbc.config.annotation.web.http.JdbcHttpSessionConfiguration
 
setRedisFlushMode(RedisFlushMode) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
setRedisFlushMode(RedisFlushMode) - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
Sets the redis flush mode.
setRedisKeyNamespace(String) - Method in class org.springframework.session.data.redis.RedisOperationsSessionRepository
 
setRedisNamespace(String) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
setRedisSubscriptionExecutor(Executor) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
setRedisTaskExecutor(Executor) - Method in class org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
 
setRememberMeParameterName(String) - Method in class org.springframework.session.security.web.authentication.SpringSessionRememberMeServices
Set the name of the parameter which should be checked for to see if a remember-me has been requested during a login request.
setRememberMeRequestAttribute(String) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
Set the request attribute name that indicates remember-me login.
setSerializationDelimiter(String) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
Sets the delimiter between a session alias and a session id when deserializing a cookie.
setServletContext(ServletContext) - Method in class org.springframework.session.config.annotation.web.http.SpringHttpSessionConfiguration
 
setServletContext(ServletContext) - Method in class org.springframework.session.web.http.SessionEventHttpSessionListenerAdapter
 
setServletContext(ServletContext) - Method in class org.springframework.session.web.http.SessionRepositoryFilter
 
setSessionAliasParamName(String) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
Sets the name of the HTTP parameter that is used to specify the session alias.
setSessionId(Map<String, Object>, String) - Static method in class org.springframework.session.web.socket.server.SessionRepositoryMessageInterceptor
 
setSessionIdResolver(WebSessionIdResolver) - Method in class org.springframework.session.web.server.session.SpringSessionWebSessionManager
Configure the id resolution strategy.
setSessionMapName(String) - Method in class org.springframework.session.hazelcast.config.annotation.web.http.HazelcastHttpSessionConfiguration
 
setSpringSessionConversionService(ConversionService) - Method in class org.springframework.session.jdbc.config.annotation.web.http.JdbcHttpSessionConfiguration
 
setTableName(String) - Method in class org.springframework.session.jdbc.config.annotation.web.http.JdbcHttpSessionConfiguration
 
setTableName(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Set the name of database table used to store sessions.
setUpdateSessionAttributeQuery(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Set the custom SQL query used to update the session attribute.
setUpdateSessionQuery(String) - Method in class org.springframework.session.jdbc.JdbcOperationsSessionRepository
Set the custom SQL query used to update the session.
setUseBase64Encoding(boolean) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
Set if the Base64 encoding of cookie value should be used.
setUseHttpOnlyCookie(boolean) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
Sets if a Cookie marked as HTTP Only should be used.
setUseSecureCookie(boolean) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
Sets if a Cookie marked as secure should be used.
setValiditySeconds(int) - Method in class org.springframework.session.security.web.authentication.SpringSessionRememberMeServices
 
SpringHttpSessionConfiguration - Class in org.springframework.session.config.annotation.web.http
Configures the basics for setting up Spring Session in a web environment.
SpringHttpSessionConfiguration() - Constructor for class org.springframework.session.config.annotation.web.http.SpringHttpSessionConfiguration
 
SpringSessionBackedSessionRegistry<S extends Session> - Class in org.springframework.session.security
A SessionRegistry that retrieves session information from Spring Session, rather than maintaining it itself.
SpringSessionBackedSessionRegistry(FindByIndexNameSessionRepository<S>) - Constructor for class org.springframework.session.security.SpringSessionBackedSessionRegistry
 
springSessionJdbcOperations(DataSource) - Method in class org.springframework.session.jdbc.config.annotation.web.http.JdbcHttpSessionConfiguration
 
SpringSessionRememberMeServices - Class in org.springframework.session.security.web.authentication
A RememberMeServices implementation that uses Spring Session backed HttpSession to provide remember-me service capabilities.
SpringSessionRememberMeServices() - Constructor for class org.springframework.session.security.web.authentication.SpringSessionRememberMeServices
 
springSessionRepositoryFilter(SessionRepository<S>) - Method in class org.springframework.session.config.annotation.web.http.SpringHttpSessionConfiguration
 
SpringSessionWebSessionManager - Class in org.springframework.session.web.server.session
The WebSessionManager implementation backed by ReactorSessionRepository.
SpringSessionWebSessionManager(ReactorSessionRepository<? extends Session>) - Constructor for class org.springframework.session.web.server.session.SpringSessionWebSessionManager
 

V

valueOf(String) - Static method in enum org.springframework.session.data.redis.RedisFlushMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.springframework.session.hazelcast.HazelcastFlushMode
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.springframework.session.data.redis.RedisFlushMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.springframework.session.hazelcast.HazelcastFlushMode
Returns an array containing the constants of this enum type, in the order they are declared.

W

WebSocketConnectHandlerDecoratorFactory - Class in org.springframework.session.web.socket.handler
Ensures that a SessionConnectEvent is published in WebSocketHandler.afterConnectionEstablished(WebSocketSession).
WebSocketConnectHandlerDecoratorFactory(ApplicationEventPublisher) - Constructor for class org.springframework.session.web.socket.handler.WebSocketConnectHandlerDecoratorFactory
Creates a new instance.
webSocketRegistryListener() - Method in class org.springframework.session.web.socket.config.annotation.AbstractSessionWebSocketMessageBrokerConfigurer
 
WebSocketRegistryListener - Class in org.springframework.session.web.socket.handler
Keeps track of mapping the Spring Session ID to the WebSocketSession and ensuring when a SessionDestroyedEvent is fired that the WebSocketSession is closed.
WebSocketRegistryListener() - Constructor for class org.springframework.session.web.socket.handler.WebSocketRegistryListener
 
wrapRequest(HttpServletRequest, HttpServletResponse) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
 
wrapRequest(HttpServletRequest, HttpServletResponse) - Method in interface org.springframework.session.web.http.RequestResponsePostProcessor
Allows customizing the HttpServletRequest.
wrapResponse(HttpServletRequest, HttpServletResponse) - Method in class org.springframework.session.web.http.CookieHttpSessionStrategy
 
wrapResponse(HttpServletRequest, HttpServletResponse) - Method in interface org.springframework.session.web.http.RequestResponsePostProcessor
Allows customizing the HttpServletResponse.
writeCookieValue(CookieSerializer.CookieValue) - Method in interface org.springframework.session.web.http.CookieSerializer
Writes a given CookieSerializer.CookieValue to the provided HttpServletResponse.
writeCookieValue(CookieSerializer.CookieValue) - Method in class org.springframework.session.web.http.DefaultCookieSerializer
 
wsConnectHandlerDecoratorFactory() - Method in class org.springframework.session.web.socket.config.annotation.AbstractSessionWebSocketMessageBrokerConfigurer
 
A B C D E F G H I J L M N O P R S V W 
Skip navigation links