Package | Description |
---|---|
org.springframework.security.access.intercept |
Abstract level security interception classes which are responsible for enforcing the
configured security constraints for a secure object.
|
org.springframework.security.authentication |
Core classes and interfaces related to user authentication, which are used throughout Spring Security.
|
org.springframework.security.authentication.rcp |
Allows remote clients to authenticate and obtain a populated
Authentication object. |
org.springframework.security.config.annotation.authentication.builders | |
org.springframework.security.config.annotation.authentication.configuration | |
org.springframework.security.config.annotation.method.configuration | |
org.springframework.security.config.annotation.web.configuration | |
org.springframework.security.config.authentication |
Parsing of <authentication-manager> and related elements.
|
org.springframework.security.provisioning |
Contains simple user and authority group account provisioning interfaces together with a a
JDBC-based implementation.
|
org.springframework.security.web.authentication |
Authentication processing mechanisms, which respond to the submission of authentication
credentials using various protocols (eg BASIC, CAS, form login etc).
|
org.springframework.security.web.authentication.preauth |
Support for "pre-authenticated" scenarios, where Spring Security assumes the incoming request has already been
authenticated by some externally configured system.
|
org.springframework.security.web.authentication.preauth.websphere |
Websphere-specific pre-authentication classes.
|
org.springframework.security.web.authentication.rememberme |
Support for remembering a user between different web sessions.
|
org.springframework.security.web.authentication.www |
WWW-Authenticate based authentication mechanism implementations: Basic and Digest authentication.
|
org.springframework.security.web.servletapi |
Populates a Servlet request with a new Spring Security compliant
HttpServletRequestWrapper . |
Modifier and Type | Method and Description |
---|---|
AuthenticationManager |
AbstractSecurityInterceptor.getAuthenticationManager() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractSecurityInterceptor.setAuthenticationManager(AuthenticationManager newManager) |
Modifier and Type | Class and Description |
---|---|
class |
ProviderManager
Iterates an
Authentication request through a list of AuthenticationProvider s. |
Modifier and Type | Method and Description |
---|---|
void |
ProviderManager.setParent(AuthenticationManager parent)
Deprecated.
Use constructor injection
|
Constructor and Description |
---|
ProviderManager(List<AuthenticationProvider> providers,
AuthenticationManager parent) |
Modifier and Type | Method and Description |
---|---|
protected AuthenticationManager |
RemoteAuthenticationManagerImpl.getAuthenticationManager() |
Modifier and Type | Method and Description |
---|---|
void |
RemoteAuthenticationManagerImpl.setAuthenticationManager(AuthenticationManager authenticationManager) |
Modifier and Type | Method and Description |
---|---|
AuthenticationManagerBuilder |
AuthenticationManagerBuilder.parentAuthenticationManager(AuthenticationManager authenticationManager)
Allows providing a parent
AuthenticationManager that will be
tried if this AuthenticationManager was unable to attempt to
authenticate the provided Authentication . |
Modifier and Type | Method and Description |
---|---|
AuthenticationManager |
AuthenticationConfiguration.getAuthenticationManager() |
Modifier and Type | Method and Description |
---|---|
protected AuthenticationManager |
GlobalMethodSecurityConfiguration.authenticationManager()
Allows providing a custom
AuthenticationManager . |
Modifier and Type | Method and Description |
---|---|
protected AuthenticationManager |
WebSecurityConfigurerAdapter.authenticationManager()
Gets the
AuthenticationManager to use. |
AuthenticationManager |
WebSecurityConfigurerAdapter.authenticationManagerBean()
Override this method to expose the
AuthenticationManager from
WebSecurityConfigurerAdapter.configure(AuthenticationManagerBuilder) to be exposed as
a Bean. |
Modifier and Type | Method and Description |
---|---|
AuthenticationManager |
AuthenticationManagerFactoryBean.getObject() |
Modifier and Type | Method and Description |
---|---|
Class<? extends AuthenticationManager> |
AuthenticationManagerFactoryBean.getObjectType() |
Modifier and Type | Method and Description |
---|---|
void |
JdbcUserDetailsManager.setAuthenticationManager(AuthenticationManager authenticationManager) |
void |
InMemoryUserDetailsManager.setAuthenticationManager(AuthenticationManager authenticationManager) |
Modifier and Type | Method and Description |
---|---|
protected AuthenticationManager |
AbstractAuthenticationProcessingFilter.getAuthenticationManager() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractAuthenticationProcessingFilter.setAuthenticationManager(AuthenticationManager authenticationManager) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractPreAuthenticatedProcessingFilter.setAuthenticationManager(AuthenticationManager authenticationManager) |
Modifier and Type | Method and Description |
---|---|
void |
WebSphere2SpringSecurityPropagationInterceptor.setAuthenticationManager(AuthenticationManager authenticationManager)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
RememberMeAuthenticationFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
Deprecated.
Use constructor injection
|
Constructor and Description |
---|
RememberMeAuthenticationFilter(AuthenticationManager authenticationManager,
RememberMeServices rememberMeServices) |
Modifier and Type | Method and Description |
---|---|
protected AuthenticationManager |
BasicAuthenticationFilter.getAuthenticationManager() |
Modifier and Type | Method and Description |
---|---|
void |
BasicAuthenticationFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
Deprecated.
Use constructor injection
|
Constructor and Description |
---|
BasicAuthenticationFilter(AuthenticationManager authenticationManager)
Creates an instance which will authenticate against the supplied
AuthenticationManager
and which will ignore failed authentication attempts, allowing the request to proceed down the filter chain. |
BasicAuthenticationFilter(AuthenticationManager authenticationManager,
AuthenticationEntryPoint authenticationEntryPoint)
Creates an instance which will authenticate against the supplied
AuthenticationManager and
use the supplied AuthenticationEntryPoint to handle authentication failures. |
Modifier and Type | Method and Description |
---|---|
void |
SecurityContextHolderAwareRequestFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
Sets the
AuthenticationManager used when integrating HttpServletRequest with Servlet 3 APIs. |
Copyright © 2019. All rights reserved.