Uses of Interface
org.springframework.security.authentication.AuthenticationDetailsSource

Packages that use AuthenticationDetailsSource
org.springframework.security.authentication Core classes and interfaces related to user authentication, which are used throughout Spring Security. 
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. 
 

Uses of AuthenticationDetailsSource in org.springframework.security.authentication
 

Classes in org.springframework.security.authentication that implement AuthenticationDetailsSource
 class AuthenticationDetailsSourceImpl
          Base implementation of AuthenticationDetailsSource.
 

Uses of AuthenticationDetailsSource in org.springframework.security.web.authentication
 

Classes in org.springframework.security.web.authentication that implement AuthenticationDetailsSource
 class WebAuthenticationDetailsSource
          Implementation of AuthenticationDetailsSource which builds the details object from an HttpServletRequest object.
 

Fields in org.springframework.security.web.authentication declared as AuthenticationDetailsSource
protected  AuthenticationDetailsSource AbstractAuthenticationProcessingFilter.authenticationDetailsSource
           
 

Methods in org.springframework.security.web.authentication that return AuthenticationDetailsSource
 AuthenticationDetailsSource AbstractAuthenticationProcessingFilter.getAuthenticationDetailsSource()
           
 

Methods in org.springframework.security.web.authentication with parameters of type AuthenticationDetailsSource
 void AbstractAuthenticationProcessingFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
           
 void AnonymousAuthenticationFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
           
 

Uses of AuthenticationDetailsSource in org.springframework.security.web.authentication.preauth
 

Methods in org.springframework.security.web.authentication.preauth with parameters of type AuthenticationDetailsSource
 void AbstractPreAuthenticatedProcessingFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
           
 

Uses of AuthenticationDetailsSource in org.springframework.security.web.authentication.preauth.j2ee
 

Classes in org.springframework.security.web.authentication.preauth.j2ee that implement AuthenticationDetailsSource
 class AbstractPreAuthenticatedAuthenticationDetailsSource
          Base implementation for classes scenarios where the authentication details object is used to store a list of authorities obtained from the context object (such as an HttpServletRequest) passed to AbstractPreAuthenticatedAuthenticationDetailsSource.buildDetails(Object).
 class J2eeBasedPreAuthenticatedWebAuthenticationDetailsSource
          Implementation of AuthenticationDetailsSource which converts the user's J2EE roles (as obtained by calling HttpServletRequest.isUserInRole(String)) into GrantedAuthoritys and stores these in the authentication details object.
 

Uses of AuthenticationDetailsSource in org.springframework.security.web.authentication.preauth.websphere
 

Classes in org.springframework.security.web.authentication.preauth.websphere that implement AuthenticationDetailsSource
 class WebSpherePreAuthenticatedAuthenticationDetailsSource
          This AuthenticationDetailsSource implementation, when configured with a MutableGrantedAuthoritiesContainer, will set the pre-authenticated granted authorities based on the WebSphere groups for the current WebSphere user, mapped using the configured Attributes2GrantedAuthoritiesMapper.
 class WebSpherePreAuthenticatedWebAuthenticationDetailsSource
          This AuthenticationDetailsSource implementation, when configured with a MutableGrantedAuthoritiesContainer, will set the pre-authenticated granted authorities based on the WebSphere groups for the current WebSphere user, mapped using the configured Attributes2GrantedAuthoritiesMapper.
 

Methods in org.springframework.security.web.authentication.preauth.websphere with parameters of type AuthenticationDetailsSource
 void WebSphere2SpringSecurityPropagationInterceptor.setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
           
 

Uses of AuthenticationDetailsSource in org.springframework.security.web.authentication.rememberme
 

Methods in org.springframework.security.web.authentication.rememberme that return AuthenticationDetailsSource
protected  AuthenticationDetailsSource AbstractRememberMeServices.getAuthenticationDetailsSource()
           
 

Methods in org.springframework.security.web.authentication.rememberme with parameters of type AuthenticationDetailsSource
 void AbstractRememberMeServices.setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
           
 

Uses of AuthenticationDetailsSource in org.springframework.security.web.authentication.switchuser
 

Methods in org.springframework.security.web.authentication.switchuser with parameters of type AuthenticationDetailsSource
 void SwitchUserFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
           
 

Uses of AuthenticationDetailsSource in org.springframework.security.web.authentication.www
 

Methods in org.springframework.security.web.authentication.www with parameters of type AuthenticationDetailsSource
 void BasicAuthenticationFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
           
 void DigestAuthenticationFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
           
 



Copyright © 2004-2011 SpringSource, Inc. All Rights Reserved.