Spring Security Framework

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

Packages that use AbstractAuthenticationToken
org.springframework.security.adapters Allows external containers to obtain authentication information from the system. 
org.springframework.security.providers Implements a provider-based approach to authentication decisions. 
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.jaas An authentication provider for JAAS. 
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.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. 
org.springframework.security.ui.ntlm   
 

Uses of AbstractAuthenticationToken in org.springframework.security.adapters
 

Subclasses of AbstractAuthenticationToken in org.springframework.security.adapters
 class AbstractAdapterAuthenticationToken
          Convenience superclass for AuthByAdapter implementations.
 class PrincipalSpringSecurityUserToken
          A Principal compatible Authentication object.
 

Uses of AbstractAuthenticationToken in org.springframework.security.providers
 

Subclasses of AbstractAuthenticationToken in org.springframework.security.providers
 class UsernamePasswordAuthenticationToken
          An Authentication implementation that is designed for simple presentation of a username and password.
 

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

Subclasses of AbstractAuthenticationToken in org.springframework.security.providers.anonymous
 class AnonymousAuthenticationToken
          Represents an anonymous Authentication.
 

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

Subclasses of AbstractAuthenticationToken in org.springframework.security.providers.cas
 class CasAuthenticationToken
          Represents a successful CAS Authentication.
 

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

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

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

Subclasses of AbstractAuthenticationToken in org.springframework.security.providers.openid
 class OpenIDAuthenticationToken
          OpenID Authentication Token
 

Uses of AbstractAuthenticationToken in org.springframework.security.providers.preauth
 

Subclasses of AbstractAuthenticationToken in org.springframework.security.providers.preauth
 class PreAuthenticatedAuthenticationToken
          Authentication implementation for pre-authenticated authentication.
 

Uses of AbstractAuthenticationToken in org.springframework.security.providers.rememberme
 

Subclasses of AbstractAuthenticationToken in org.springframework.security.providers.rememberme
 class RememberMeAuthenticationToken
          Represents a remembered Authentication.
 

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

Subclasses of AbstractAuthenticationToken in org.springframework.security.providers.x509
 class X509AuthenticationToken
          Deprecated. superceded by the preauth provider. Use the X.509 authentication support in org.springframework.security.ui.preauth.x509 instead.
 

Uses of AbstractAuthenticationToken in org.springframework.security.runas
 

Subclasses of AbstractAuthenticationToken in org.springframework.security.runas
 class RunAsUserToken
          An immutable Authentication implementation that supports RunAsManagerImpl.
 

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

Subclasses of AbstractAuthenticationToken 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.
 


Spring Security Framework

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