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

Packages that use AuthenticationProvider
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.dao An AuthenticationProvider which 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 AuthenticationProvider that can process CAS service tickets and proxy tickets. 
org.springframework.security.config.authentication Parsing of <authentication-manager> and related elements. 
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 Support for "pre-authenticated" scenarios, where Spring Security assumes the incoming request has already been authenticated by some externally configured system. 
 

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-2011 SpringSource, Inc. All Rights Reserved.