Uses of Interface
org.acegisecurity.GrantedAuthority

Packages that use GrantedAuthority
org.acegisecurity Provides core Acegi Security System for Spring interfaces and classes. 
org.acegisecurity.adapters Allows external containers to obtain authentication information from the system. 
org.acegisecurity.providers Implements a provider-based approach to authentication decisions. 
org.acegisecurity.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.acegisecurity.providers.cas An authentication provider that can process Yale Central Authentication Service (CAS) service tickets and proxy tickets. 
org.acegisecurity.providers.jaas An authentication provider for JAAS. 
org.acegisecurity.providers.rcp Allows remote clients to authenticate and obtain a populated Authentication object. 
org.acegisecurity.providers.rememberme Authentication provider that processes RememberMeAuthenticationTokens. 
org.acegisecurity.providers.x509 An authentication provider that can process X.509 certificaties. 
org.acegisecurity.runas Allows secure objects to be run under a different authentication identity. 
org.acegisecurity.ui.switchuser   
org.acegisecurity.userdetails   
org.acegisecurity.userdetails.memory Exposes an in-memory authentication repository. 
 

Uses of GrantedAuthority in org.acegisecurity
 

Classes in org.acegisecurity that implement GrantedAuthority
 class GrantedAuthorityImpl
          Basic concrete implementation of a GrantedAuthority.
 

Methods in org.acegisecurity that return GrantedAuthority
 GrantedAuthority[] Authentication.getAuthorities()
          Set by an AuthenticationManager to indicate the authorities that the principal has been granted.
 

Uses of GrantedAuthority in org.acegisecurity.adapters
 

Methods in org.acegisecurity.adapters that return GrantedAuthority
 GrantedAuthority[] AbstractAdapterAuthenticationToken.getAuthorities()
           
 

Constructors in org.acegisecurity.adapters with parameters of type GrantedAuthority
AbstractAdapterAuthenticationToken(String key, GrantedAuthority[] authorities)
          The only way an AbstractAdapterAuthentication should be constructed.
PrincipalAcegiUserToken(String key, String username, String password, GrantedAuthority[] authorities, Object principal)
           
 

Uses of GrantedAuthority in org.acegisecurity.providers
 

Methods in org.acegisecurity.providers that return GrantedAuthority
 GrantedAuthority[] UsernamePasswordAuthenticationToken.getAuthorities()
           
 GrantedAuthority[] TestingAuthenticationToken.getAuthorities()
           
 

Constructors in org.acegisecurity.providers with parameters of type GrantedAuthority
TestingAuthenticationToken(Object principal, Object credentials, GrantedAuthority[] authorities)
           
UsernamePasswordAuthenticationToken(Object principal, Object credentials, GrantedAuthority[] authorities)
          This constructor should only be used by AuthenticationManager or AuthenticationProvider implementations that are satisfied with producing a trusted (ie UsernamePasswordAuthenticationToken.isAuthenticated() = true) authentication token.
 

Uses of GrantedAuthority in org.acegisecurity.providers.anonymous
 

Methods in org.acegisecurity.providers.anonymous that return GrantedAuthority
 GrantedAuthority[] AnonymousAuthenticationToken.getAuthorities()
           
 

Constructors in org.acegisecurity.providers.anonymous with parameters of type GrantedAuthority
AnonymousAuthenticationToken(String key, Object principal, GrantedAuthority[] authorities)
          Constructor.
 

Uses of GrantedAuthority in org.acegisecurity.providers.cas
 

Methods in org.acegisecurity.providers.cas that return GrantedAuthority
 GrantedAuthority[] CasAuthenticationToken.getAuthorities()
           
 

Constructors in org.acegisecurity.providers.cas with parameters of type GrantedAuthority
CasAuthenticationToken(String key, Object principal, Object credentials, GrantedAuthority[] authorities, UserDetails userDetails, List proxyList, String proxyGrantingTicketIou)
          Constructor.
 

Uses of GrantedAuthority in org.acegisecurity.providers.jaas
 

Classes in org.acegisecurity.providers.jaas that implement GrantedAuthority
 class JaasGrantedAuthority
          Extends GrantedAuthorityImpl to hold the principal that an AuthorityGranter justified as a reason to grant this Authority.
 

Constructors in org.acegisecurity.providers.jaas with parameters of type GrantedAuthority
JaasAuthenticationToken(Object principal, Object credentials, GrantedAuthority[] authorities, LoginContext loginContext)
           
 

Uses of GrantedAuthority in org.acegisecurity.providers.rcp
 

Methods in org.acegisecurity.providers.rcp that return GrantedAuthority
 GrantedAuthority[] RemoteAuthenticationManagerImpl.attemptAuthentication(String username, String password)
           
 GrantedAuthority[] RemoteAuthenticationManager.attemptAuthentication(String username, String password)
          Attempts to authenticate the remote client using the presented username and password.
 

Uses of GrantedAuthority in org.acegisecurity.providers.rememberme
 

Methods in org.acegisecurity.providers.rememberme that return GrantedAuthority
 GrantedAuthority[] RememberMeAuthenticationToken.getAuthorities()
           
 

Constructors in org.acegisecurity.providers.rememberme with parameters of type GrantedAuthority
RememberMeAuthenticationToken(String key, Object principal, GrantedAuthority[] authorities)
          Constructor.
 

Uses of GrantedAuthority in org.acegisecurity.providers.x509
 

Methods in org.acegisecurity.providers.x509 that return GrantedAuthority
 GrantedAuthority[] X509AuthenticationToken.getAuthorities()
           
 

Constructors in org.acegisecurity.providers.x509 with parameters of type GrantedAuthority
X509AuthenticationToken(Object principal, X509Certificate credentials, GrantedAuthority[] authorities)
           
 

Uses of GrantedAuthority in org.acegisecurity.runas
 

Methods in org.acegisecurity.runas that return GrantedAuthority
 GrantedAuthority[] RunAsUserToken.getAuthorities()
           
 

Constructors in org.acegisecurity.runas with parameters of type GrantedAuthority
RunAsUserToken(String key, Object principal, Object credentials, GrantedAuthority[] authorities, Class originalAuthentication)
           
 

Uses of GrantedAuthority in org.acegisecurity.ui.switchuser
 

Classes in org.acegisecurity.ui.switchuser that implement GrantedAuthority
 class SwitchUserGrantedAuthority
          Custom GrantedAuthority used by SwitchUserProcessingFilter
 

Uses of GrantedAuthority in org.acegisecurity.userdetails
 

Methods in org.acegisecurity.userdetails that return GrantedAuthority
 GrantedAuthority[] UserDetails.getAuthorities()
          Returns the authorities granted to the user.
 GrantedAuthority[] User.getAuthorities()
           
 

Methods in org.acegisecurity.userdetails with parameters of type GrantedAuthority
protected  void User.setAuthorities(GrantedAuthority[] authorities)
           
 

Constructors in org.acegisecurity.userdetails with parameters of type GrantedAuthority
User(String username, String password, boolean enabled, boolean accountNonExpired, boolean credentialsNonExpired, boolean accountNonLocked, GrantedAuthority[] authorities)
          Construct the User with the details required by DaoAuthenticationProvider.
User(String username, String password, boolean enabled, boolean accountNonExpired, boolean credentialsNonExpired, GrantedAuthority[] authorities)
          Deprecated. use new constructor with extended properties (this constructor will be removed from release 1.0.0)
User(String username, String password, boolean enabled, GrantedAuthority[] authorities)
          Deprecated. use new constructor with extended properties (this constructor will be removed from release 1.0.0)
 

Uses of GrantedAuthority in org.acegisecurity.userdetails.memory
 

Methods in org.acegisecurity.userdetails.memory that return GrantedAuthority
 GrantedAuthority[] UserAttribute.getAuthorities()
           
 

Methods in org.acegisecurity.userdetails.memory with parameters of type GrantedAuthority
 void UserAttribute.addAuthority(GrantedAuthority newAuthority)
           
 



Copyright © 2004-2005 Acegi Technology Pty Limited. All Rights Reserved.