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

Packages that use AuthenticationManager
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.rcp Allows remote clients to authenticate and obtain a populated Authentication object. 
org.springframework.security.config.authentication Parsing of <authentication-manager> and related elements. 
org.springframework.security.provisioning Contains simple user and authority group account provisioning interfaces together with a a JDBC-based implementation. 
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 Support for "pre-authenticated" scenarios, where Spring Security assumes the incoming request has already been authenticated by some externally configured system. 
org.springframework.security.web.authentication.preauth.websphere Websphere-specific pre-authentication classes. 
org.springframework.security.web.authentication.rememberme Support for remembering a user between different web sessions. 
org.springframework.security.web.authentication.www WWW-Authenticate based authentication mechanism implementations: Basic and Digest authentication. 
 

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

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

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

Uses of AuthenticationManager in org.springframework.security.authentication
 

Classes in org.springframework.security.authentication that implement AuthenticationManager
 class AbstractAuthenticationManager
          An abstract implementation of the AuthenticationManager.
 class ProviderManager
          Iterates an Authentication request through a list of AuthenticationProviders.
 

Methods in org.springframework.security.authentication with parameters of type AuthenticationManager
 void ProviderManager.setParent(AuthenticationManager parent)
           
 

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

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

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

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

Methods in org.springframework.security.config.authentication that return AuthenticationManager
 AuthenticationManager AuthenticationManagerFactoryBean.getObject()
           
 

Methods in org.springframework.security.config.authentication that return types with arguments of type AuthenticationManager
 Class<? extends AuthenticationManager> AuthenticationManagerFactoryBean.getObjectType()
           
 

Uses of AuthenticationManager in org.springframework.security.provisioning
 

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

Uses of AuthenticationManager in org.springframework.security.web.authentication
 

Methods in org.springframework.security.web.authentication that return AuthenticationManager
protected  AuthenticationManager AbstractAuthenticationProcessingFilter.getAuthenticationManager()
           
 

Methods in org.springframework.security.web.authentication with parameters of type AuthenticationManager
 void AbstractAuthenticationProcessingFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
           
 

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

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

Uses of AuthenticationManager in org.springframework.security.web.authentication.preauth.websphere
 

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

Uses of AuthenticationManager in org.springframework.security.web.authentication.rememberme
 

Methods in org.springframework.security.web.authentication.rememberme with parameters of type AuthenticationManager
 void RememberMeAuthenticationFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
           
 

Uses of AuthenticationManager in org.springframework.security.web.authentication.www
 

Methods in org.springframework.security.web.authentication.www that return AuthenticationManager
protected  AuthenticationManager BasicAuthenticationFilter.getAuthenticationManager()
           
 

Methods in org.springframework.security.web.authentication.www with parameters of type AuthenticationManager
 void BasicAuthenticationFilter.setAuthenticationManager(AuthenticationManager authenticationManager)
           
 



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