Package | Description |
---|---|
org.springframework.security.authentication |
Core classes and interfaces related to user authentication, which are used throughout Spring Security.
|
org.springframework.security.cas.web.authentication |
Authentication processing mechanisms which respond to the submission of authentication
credentials using CAS.
|
org.springframework.security.config.annotation.web.configurers | |
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.j2ee |
Pre-authentication support for container-authenticated requests.
|
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.switchuser |
Provides HTTP-based "switch user" (su) capabilities.
|
org.springframework.security.web.authentication.www |
WWW-Authenticate based authentication mechanism implementations: Basic and Digest authentication.
|
Modifier and Type | Class and Description |
---|---|
class |
AuthenticationDetailsSourceImpl
Deprecated.
Write an implementation of AuthenticationDetailsSource which returns the desired type directly.
|
Modifier and Type | Class and Description |
---|---|
class |
ServiceAuthenticationDetailsSource
The
AuthenticationDetailsSource that is set on the
CasAuthenticationFilter should return a value that implements
ServiceAuthenticationDetails if the application needs to authenticate
dynamic service urls. |
Modifier and Type | Method and Description |
---|---|
HttpBasicConfigurer<B> |
HttpBasicConfigurer.authenticationDetailsSource(AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource)
Specifies a custom
AuthenticationDetailsSource to use for basic
authentication. |
T |
AbstractAuthenticationFilterConfigurer.authenticationDetailsSource(AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource)
Specifies a custom
AuthenticationDetailsSource . |
X509Configurer<H> |
X509Configurer.authenticationDetailsSource(AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,PreAuthenticatedGrantedAuthoritiesWebAuthenticationDetails> authenticationDetailsSource)
Specifies the
AuthenticationDetailsSource |
Modifier and Type | Class and Description |
---|---|
class |
WebAuthenticationDetailsSource
Implementation of
AuthenticationDetailsSource which builds the details object from
an HttpServletRequest object, creating a WebAuthenticationDetails . |
Modifier and Type | Field and Description |
---|---|
protected AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> |
AbstractAuthenticationProcessingFilter.authenticationDetailsSource |
Modifier and Type | Method and Description |
---|---|
void |
AnonymousAuthenticationFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource) |
void |
AbstractAuthenticationProcessingFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource) |
Modifier and Type | Method and Description |
---|---|
protected AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> |
AbstractPreAuthenticatedProcessingFilter.getAuthenticationDetailsSource() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractPreAuthenticatedProcessingFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource) |
Modifier and Type | Class and Description |
---|---|
class |
J2eeBasedPreAuthenticatedWebAuthenticationDetailsSource
Implementation of AuthenticationDetailsSource which converts the user's J2EE roles (as obtained by calling
HttpServletRequest.isUserInRole(String) ) into GrantedAuthority s and stores these in the authentication
details object. |
Modifier and Type | Class and Description |
---|---|
class |
WebSpherePreAuthenticatedAuthenticationDetailsSource
Deprecated.
|
class |
WebSpherePreAuthenticatedWebAuthenticationDetailsSource
This AuthenticationDetailsSource implementation will set the pre-authenticated granted
authorities based on the WebSphere groups for the current WebSphere user, mapped using the
configured Attributes2GrantedAuthoritiesMapper.
|
Modifier and Type | Method and Description |
---|---|
void |
WebSphere2SpringSecurityPropagationInterceptor.setAuthenticationDetailsSource(AuthenticationDetailsSource<?,?> authenticationDetailsSource)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> |
AbstractRememberMeServices.getAuthenticationDetailsSource() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractRememberMeServices.setAuthenticationDetailsSource(AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource) |
Modifier and Type | Method and Description |
---|---|
void |
SwitchUserFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource) |
Modifier and Type | Method and Description |
---|---|
void |
BasicAuthenticationFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource) |
void |
DigestAuthenticationFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource) |
Copyright © 2019. All rights reserved.