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

Packages that use AuthenticationDetailsSource
org.springframework.security.authentication Implements a provider-based approach to authentication decisions. 
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   
org.springframework.security.web.authentication.preauth.j2ee   
org.springframework.security.web.authentication.preauth.websphere   
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 Contains 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 AnonymousAuthenticationFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
           
 void AbstractAuthenticationProcessingFilter.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 DigestAuthenticationFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
           
 void BasicAuthenticationFilter.setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
           
 



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