Spring Security Framework

Uses of Class
org.springframework.security.providers.UsernamePasswordAuthenticationToken

Packages that use UsernamePasswordAuthenticationToken
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.ui.ntlm   
org.springframework.security.ui.webapp Authenticates users via HTTP properties, headers and session. 
 

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

Methods in org.springframework.security.providers.dao with parameters of type UsernamePasswordAuthenticationToken
protected  void DaoAuthenticationProvider.additionalAuthenticationChecks(UserDetails userDetails, UsernamePasswordAuthenticationToken authentication)
           
protected abstract  void AbstractUserDetailsAuthenticationProvider.additionalAuthenticationChecks(UserDetails userDetails, UsernamePasswordAuthenticationToken authentication)
          Allows subclasses to perform any additional checks of a returned (or cached) UserDetails for a given authentication request.
protected  UserDetails DaoAuthenticationProvider.retrieveUser(String username, UsernamePasswordAuthenticationToken authentication)
           
protected abstract  UserDetails AbstractUserDetailsAuthenticationProvider.retrieveUser(String username, UsernamePasswordAuthenticationToken authentication)
          Allows subclasses to actually retrieve the UserDetails from an implementation-specific location, with the option of throwing an AuthenticationException immediately if the presented credentials are incorrect (this is especially useful if it is necessary to bind to a resource as the user in order to obtain or generate a UserDetails).
 

Uses of UsernamePasswordAuthenticationToken in org.springframework.security.providers.jaas
 

Subclasses of UsernamePasswordAuthenticationToken in org.springframework.security.providers.jaas
 class JaasAuthenticationToken
          UsernamePasswordAuthenticationToken extension to carry the Jaas LoginContext that the user was logged into
 

Methods in org.springframework.security.providers.jaas with parameters of type UsernamePasswordAuthenticationToken
protected  void JaasAuthenticationProvider.publishFailureEvent(UsernamePasswordAuthenticationToken token, SpringSecurityException ase)
          Publishes the JaasAuthenticationFailedEvent.
protected  void JaasAuthenticationProvider.publishSuccessEvent(UsernamePasswordAuthenticationToken token)
          Publishes the JaasAuthenticationSuccessEvent.
 

Uses of UsernamePasswordAuthenticationToken in org.springframework.security.providers.ldap
 

Methods in org.springframework.security.providers.ldap with parameters of type UsernamePasswordAuthenticationToken
protected  Authentication LdapAuthenticationProvider.createSuccessfulAuthentication(UsernamePasswordAuthenticationToken authentication, UserDetails user)
           
 

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

Subclasses of UsernamePasswordAuthenticationToken in org.springframework.security.ui.ntlm
 class NtlmUsernamePasswordAuthenticationToken
          An NTLM-specific UsernamePasswordAuthenticationToken that allows any provider to bypass the problem of an empty password since NTLM does not retrieve the user's password from the PDC.
 

Uses of UsernamePasswordAuthenticationToken in org.springframework.security.ui.webapp
 

Methods in org.springframework.security.ui.webapp with parameters of type UsernamePasswordAuthenticationToken
protected  void AuthenticationProcessingFilter.setDetails(HttpServletRequest request, UsernamePasswordAuthenticationToken authRequest)
          Provided so that subclasses may configure what is put into the authentication request's details property.
 


Spring Security Framework

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