Package org.springframework.security.web.context
Classes which are responsible for maintaining the security context between HTTP
requests.
-
Interface Summary Interface Description SecurityContextRepository Strategy used for persisting aSecurityContext
between requests. -
Class Summary Class Description AbstractSecurityWebApplicationInitializer Registers theDelegatingFilterProxy
to use the springSecurityFilterChain before any other registeredFilter
.HttpRequestResponseHolder Deprecated. HttpSessionSecurityContextRepository ASecurityContextRepository
implementation which stores the security context in theHttpSession
between requests.NullSecurityContextRepository RequestAttributeSecurityContextRepository Stores theSecurityContext
on aServletRequest.setAttribute(String, Object)
so that it can be restored when different dispatch types occur.SaveContextOnUpdateOrErrorResponseWrapper Deprecated. SecurityContextHolderFilter AFilter
that uses theSecurityContextRepository
to obtain theSecurityContext
and set it on theSecurityContextHolder
.SecurityContextPersistenceFilter Deprecated.