Spring Security Framework

Uses of Interface
org.springframework.security.AuthenticationManager

Packages that use AuthenticationManager
org.springframework.security Provides core Spring Security interfaces and classes. 
org.springframework.security.config   
org.springframework.security.intercept Actually enforces the security and ties the whole security system together. 
org.springframework.security.providers Implements a provider-based approach to authentication decisions. 
org.springframework.security.providers.rcp Allows remote clients to authenticate and obtain a populated Authentication object. 
org.springframework.security.ui Authentication processing mechanisms, which respond to the submission of authentication credentials using various protocols (eg BASIC, CAS, form login etc). 
org.springframework.security.ui.basicauth Authenticates HTTP BASIC authentication requests. 
org.springframework.security.ui.ntlm   
org.springframework.security.ui.portlet Authentication interceptor (and related classes) for use with the Portlet 1.0 (JSR 168) Specification. 
org.springframework.security.ui.preauth   
org.springframework.security.ui.preauth.websphere   
org.springframework.security.ui.rememberme Support for remembering a user between different web sessions. 
org.springframework.security.ui.x509 This package is now deprecated and will be removed in a future version. 
org.springframework.security.userdetails.jdbc Exposes a JDBC-based authentication repository. 
 

Uses of AuthenticationManager in org.springframework.security
 

Classes in org.springframework.security that implement AuthenticationManager
 class AbstractAuthenticationManager
          An abstract implementation of the AuthenticationManager.
 class MockAuthenticationManager
          Simply accepts as valid whatever is passed to it, if grantAccess is set to true.
 

Uses of AuthenticationManager in org.springframework.security.config
 

Classes in org.springframework.security.config that implement AuthenticationManager
 class NamespaceAuthenticationManager
          Extended version of the default authentication manager which lazily initializes the list of AuthenticationProviders.
 

Uses of AuthenticationManager in org.springframework.security.intercept
 

Methods in org.springframework.security.intercept that return AuthenticationManager
 AuthenticationManager AbstractSecurityInterceptor.getAuthenticationManager()
           
 

Methods in org.springframework.security.intercept with parameters of type AuthenticationManager
 void AbstractSecurityInterceptor.setAuthenticationManager(AuthenticationManager newManager)
           
 

Uses of AuthenticationManager in org.springframework.security.providers
 

Classes in org.springframework.security.providers that implement AuthenticationManager
 class ProviderManager
          Iterates an Authentication request through a list of AuthenticationProviders.
 

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

Methods in org.springframework.security.providers.rcp that return AuthenticationManager
 AuthenticationManager RemoteAuthenticationManagerImpl.getAuthenticationManager()
           
 

Methods in org.springframework.security.providers.rcp with parameters of type AuthenticationManager
 void RemoteAuthenticationManagerImpl.setAuthenticationManager(AuthenticationManager authenticationManager)
           
 

Uses of AuthenticationManager in org.springframework.security.ui
 

Methods in org.springframework.security.ui that return AuthenticationManager
protected  AuthenticationManager AbstractProcessingFilter.getAuthenticationManager()
           
 

Methods in org.springframework.security.ui with parameters of type AuthenticationManager
 void AbstractProcessingFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
           
 

Uses of AuthenticationManager in org.springframework.security.ui.basicauth
 

Methods in org.springframework.security.ui.basicauth that return AuthenticationManager
protected  AuthenticationManager BasicProcessingFilter.getAuthenticationManager()
           
 

Methods in org.springframework.security.ui.basicauth with parameters of type AuthenticationManager
 void BasicProcessingFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
           
 

Uses of AuthenticationManager in org.springframework.security.ui.ntlm
 

Methods in org.springframework.security.ui.ntlm with parameters of type AuthenticationManager
 void NtlmProcessingFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
          Sets the AuthenticationManager to use.
 

Uses of AuthenticationManager in org.springframework.security.ui.portlet
 

Methods in org.springframework.security.ui.portlet with parameters of type AuthenticationManager
 void PortletProcessingInterceptor.setAuthenticationManager(AuthenticationManager authenticationManager)
           
 

Uses of AuthenticationManager in org.springframework.security.ui.preauth
 

Methods in org.springframework.security.ui.preauth with parameters of type AuthenticationManager
 void AbstractPreAuthenticatedProcessingFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
           
 

Uses of AuthenticationManager in org.springframework.security.ui.preauth.websphere
 

Methods in org.springframework.security.ui.preauth.websphere that return AuthenticationManager
 AuthenticationManager WebSphere2SpringSecurityPropagationInterceptor.getAuthenticationManager()
           
 

Methods in org.springframework.security.ui.preauth.websphere with parameters of type AuthenticationManager
 void WebSphere2SpringSecurityPropagationInterceptor.setAuthenticationManager(AuthenticationManager authenticationManager)
           
 

Uses of AuthenticationManager in org.springframework.security.ui.rememberme
 

Methods in org.springframework.security.ui.rememberme with parameters of type AuthenticationManager
 void RememberMeProcessingFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
           
 

Uses of AuthenticationManager in org.springframework.security.ui.x509
 

Methods in org.springframework.security.ui.x509 with parameters of type AuthenticationManager
 void X509ProcessingFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
          Deprecated.  
 

Uses of AuthenticationManager in org.springframework.security.userdetails.jdbc
 

Methods in org.springframework.security.userdetails.jdbc with parameters of type AuthenticationManager
 void JdbcUserDetailsManager.setAuthenticationManager(AuthenticationManager authenticationManager)
           
 


Spring Security Framework

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