|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use GrantedAuthority | |
---|---|
org.acegisecurity | Provides core Acegi Security System for Spring interfaces and classes. |
org.acegisecurity.acls.domain | Basic implementation of access control lists (ACLs) interfaces. |
org.acegisecurity.acls.sid | Provides indirection between ACL packages and security identities, such as principals and GrantedAuthority[]s. |
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 JA-SIG Central Authentication Service (CAS) service tickets and proxy tickets. |
org.acegisecurity.providers.jaas | An authentication provider for JAAS. |
org.acegisecurity.providers.ldap | The LDAP authentication provider package. |
org.acegisecurity.providers.ldap.populator | LdapAuthoritiesPopulator implementations. |
org.acegisecurity.providers.rcp | Allows remote clients to authenticate and obtain a populated
Authentication object. |
org.acegisecurity.providers.rememberme | Authentication provider that processes RememberMeAuthenticationToken s. |
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 | Provides HTTP-based "switch user" (su) capabilities. |
org.acegisecurity.userdetails | |
org.acegisecurity.userdetails.ldap | |
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.acls.domain |
---|
Constructors in org.acegisecurity.acls.domain with parameters of type GrantedAuthority | |
---|---|
AclAuthorizationStrategyImpl(GrantedAuthority[] auths)
Constructor. |
Uses of GrantedAuthority in org.acegisecurity.acls.sid |
---|
Constructors in org.acegisecurity.acls.sid with parameters of type GrantedAuthority | |
---|---|
GrantedAuthoritySid(GrantedAuthority grantedAuthority)
|
Uses of GrantedAuthority in org.acegisecurity.adapters |
---|
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[] |
AbstractAuthenticationToken.getAuthorities()
|
Constructors in org.acegisecurity.providers with parameters of type GrantedAuthority | |
---|---|
AbstractAuthenticationToken(GrantedAuthority[] authorities)
Creates a token with the supplied array of authorities. |
|
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 AbstractAuthenticationToken.isAuthenticated() =
true ) authentication token. |
Uses of GrantedAuthority in org.acegisecurity.providers.anonymous |
---|
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 |
---|
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.ldap |
---|
Methods in org.acegisecurity.providers.ldap that return GrantedAuthority | |
---|---|
GrantedAuthority[] |
LdapAuthoritiesPopulator.getGrantedAuthorities(LdapUserDetails userDetails)
Get the list of authorities for the user. |
Uses of GrantedAuthority in org.acegisecurity.providers.ldap.populator |
---|
Methods in org.acegisecurity.providers.ldap.populator that return GrantedAuthority | |
---|---|
GrantedAuthority[] |
DefaultLdapAuthoritiesPopulator.getGrantedAuthorities(LdapUserDetails userDetails)
Obtains the authorities for the user who's directory entry is represented by the supplied LdapUserDetails object. |
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 |
---|
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 |
---|
Constructors in org.acegisecurity.providers.x509 with parameters of type GrantedAuthority | |
---|---|
X509AuthenticationToken(Object principal,
X509Certificate credentials,
GrantedAuthority[] authorities)
Used for an authentication response object. |
Uses of GrantedAuthority in org.acegisecurity.runas |
---|
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[] |
User.getAuthorities()
|
GrantedAuthority[] |
UserDetails.getAuthorities()
Returns the authorities granted to the user. |
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.ldap |
---|
Methods in org.acegisecurity.userdetails.ldap that return GrantedAuthority | |
---|---|
protected GrantedAuthority |
LdapUserDetailsMapper.createAuthority(Object role)
Creates a GrantedAuthority from a role attribute. |
GrantedAuthority[] |
LdapUserDetailsImpl.getAuthorities()
|
GrantedAuthority[] |
LdapUserDetailsImpl.Essence.getGrantedAuthorities()
|
Methods in org.acegisecurity.userdetails.ldap with parameters of type GrantedAuthority | |
---|---|
LdapUserDetailsImpl.Essence |
LdapUserDetailsImpl.Essence.addAuthority(GrantedAuthority a)
|
LdapUserDetailsImpl.Essence |
LdapUserDetailsImpl.Essence.setAuthorities(GrantedAuthority[] authorities)
|
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)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |