Spring Security Framework

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

Packages that use AuthenticationProvider
org.springframework.security.adapters Allows external containers to obtain authentication information from the system. 
org.springframework.security.providers.anonymous Allows you to secure every invocation (especially useful for web request URI security) by always having either an actual principal or an anonymous principal authenticated. 
org.springframework.security.providers.cas An authentication provider that can process JA-SIG Central Authentication Service (CAS) service tickets and proxy tickets. 
org.springframework.security.providers.dao An authentication provider that relies upon a data access object. 
org.springframework.security.providers.jaas An authentication provider for JAAS. 
org.springframework.security.providers.ldap The LDAP authentication provider package. 
org.springframework.security.providers.openid An authentication provider that can process OpenID Authentication Tokens as created by implementations of the OpenIDConsumer interface. 
org.springframework.security.providers.preauth   
org.springframework.security.providers.rcp Allows remote clients to authenticate and obtain a populated Authentication object. 
org.springframework.security.providers.rememberme Authentication provider that processes RememberMeAuthenticationTokens. 
org.springframework.security.providers.x509 This package is now deprecated and will be removed in a future version. 
org.springframework.security.runas Allows secure objects to be run under a different authentication identity. 
 

Uses of AuthenticationProvider in org.springframework.security.adapters
 

Classes in org.springframework.security.adapters that implement AuthenticationProvider
 class AuthByAdapterProvider
          An AuthenticationProvider implementation that can authenticate an AuthByAdapter.
 

Uses of AuthenticationProvider in org.springframework.security.providers.anonymous
 

Classes in org.springframework.security.providers.anonymous that implement AuthenticationProvider
 class AnonymousAuthenticationProvider
          An AuthenticationProvider implementation that validates AnonymousAuthenticationTokens.
 

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

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

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

Classes in org.springframework.security.providers.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.providers.jaas
 

Classes in org.springframework.security.providers.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.providers.ldap
 

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

Uses of AuthenticationProvider in org.springframework.security.providers.openid
 

Classes in org.springframework.security.providers.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.providers.preauth
 

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

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

Classes in org.springframework.security.providers.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.providers.rememberme
 

Classes in org.springframework.security.providers.rememberme that implement AuthenticationProvider
 class RememberMeAuthenticationProvider
          An AuthenticationProvider implementation that validates RememberMeAuthenticationTokens.
 

Uses of AuthenticationProvider in org.springframework.security.providers.x509
 

Classes in org.springframework.security.providers.x509 that implement AuthenticationProvider
 class X509AuthenticationProvider
          Deprecated. superceded by the preauth provider. Use the X.509 authentication support in org.springframework.security.ui.preauth.x509 instead or namespace support via the <x509 /> element.
 

Uses of AuthenticationProvider in org.springframework.security.runas
 

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


Spring Security Framework

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