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

Packages that use AuthenticationProvider
org.springframework.security.access.intercept Actually enforces the security and ties the whole security system together. 
org.springframework.security.authentication Implements a provider-based approach to authentication decisions. 
org.springframework.security.authentication.dao An authentication provider that relies upon a data access object. 
org.springframework.security.authentication.jaas An authentication provider for JAAS. 
org.springframework.security.authentication.rcp Allows remote clients to authenticate and obtain a populated Authentication object. 
org.springframework.security.cas.authentication An authentication provider that can process JA-SIG Central Authentication Service (CAS) service tickets and proxy tickets. 
org.springframework.security.config.authentication   
org.springframework.security.ldap.authentication The LDAP authentication provider package. 
org.springframework.security.openid Authenticates standard web browser users via OpenID
org.springframework.security.web.authentication.preauth   
 

Uses of AuthenticationProvider in org.springframework.security.access.intercept
 

Classes in org.springframework.security.access.intercept that implement AuthenticationProvider
 class RunAsImplAuthenticationProvider
          An AuthenticationProvider implementation that can authenticate a RunAsUserToken.
 

Uses of AuthenticationProvider in org.springframework.security.authentication
 

Classes in org.springframework.security.authentication that implement AuthenticationProvider
 class AnonymousAuthenticationProvider
          An AuthenticationProvider implementation that validates AnonymousAuthenticationTokens.
 class RememberMeAuthenticationProvider
          An AuthenticationProvider implementation that validates RememberMeAuthenticationTokens.
 class TestingAuthenticationProvider
          An AuthenticationProvider implementation for the TestingAuthenticationToken.
 

Methods in org.springframework.security.authentication that return types with arguments of type AuthenticationProvider
 List<AuthenticationProvider> ProviderManager.getProviders()
           
 

Uses of AuthenticationProvider in org.springframework.security.authentication.dao
 

Classes in org.springframework.security.authentication.dao that implement AuthenticationProvider
 class AbstractUserDetailsAuthenticationProvider
          A base AuthenticationProvider that allows subclasses to override and work with UserDetails objects.
 class DaoAuthenticationProvider
          An AuthenticationProvider implementation that retrieves user details from an UserDetailsService.
 

Uses of AuthenticationProvider in org.springframework.security.authentication.jaas
 

Classes in org.springframework.security.authentication.jaas that implement AuthenticationProvider
 class JaasAuthenticationProvider
          An AuthenticationProvider implementation that retrieves user details from a JAAS login configuration.
 

Uses of AuthenticationProvider in org.springframework.security.authentication.rcp
 

Classes in org.springframework.security.authentication.rcp that implement AuthenticationProvider
 class RemoteAuthenticationProvider
          Client-side object which queries a RemoteAuthenticationManager to validate an authentication request.
 

Uses of AuthenticationProvider in org.springframework.security.cas.authentication
 

Classes in org.springframework.security.cas.authentication that implement AuthenticationProvider
 class CasAuthenticationProvider
          An AuthenticationProvider implementation that integrates with JA-SIG Central Authentication Service (CAS).
 

Uses of AuthenticationProvider in org.springframework.security.config.authentication
 

Classes in org.springframework.security.config.authentication that implement AuthenticationProvider
static class AuthenticationManagerBeanDefinitionParser.NullAuthenticationProvider
          Provider which doesn't provide any service.
 

Uses of AuthenticationProvider in org.springframework.security.ldap.authentication
 

Classes in org.springframework.security.ldap.authentication that implement AuthenticationProvider
 class LdapAuthenticationProvider
          An AuthenticationProvider implementation that authenticates against an LDAP server.
 

Uses of AuthenticationProvider in org.springframework.security.openid
 

Classes in org.springframework.security.openid that implement AuthenticationProvider
 class OpenIDAuthenticationProvider
          Finalises the OpenID authentication by obtaining local authorities for the authenticated user.
 

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

Classes in org.springframework.security.web.authentication.preauth that implement AuthenticationProvider
 class PreAuthenticatedAuthenticationProvider
           Processes a pre-authenticated authentication request.
 



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