Uses of Interface
org.wildfly.security.authz.AuthorizationIdentity
-
Packages that use AuthorizationIdentity Package Description org.wildfly.security.auth.realm Security realm implementations for Elytron.org.wildfly.security.auth.realm.jdbc Classes related to aSecurityRealm
implementation based on the JDBC (Java Database Connectivity) API.org.wildfly.security.auth.realm.ldap Classes related to aSecurityRealm
implementation capable of integrating with LDAP servers.org.wildfly.security.auth.realm.token Classes related to aSecurityRealm
implementation that handles different types of security tokens.org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.auth.server.event org.wildfly.security.authz Elytron's Authorization API -
-
Uses of AuthorizationIdentity in org.wildfly.security.auth.realm
Classes in org.wildfly.security.auth.realm that implement AuthorizationIdentity Modifier and Type Class Description private static class
JaasSecurityRealm.JaasAuthorizationIdentity
A JAAS realm's authorization identity.Methods in org.wildfly.security.auth.realm that return AuthorizationIdentity Modifier and Type Method Description AuthorizationIdentity
AggregateSecurityRealm.Identity. getAuthorizationIdentity()
AuthorizationIdentity
DistributedSecurityRealm.EvidenceDistributedIdentity. getAuthorizationIdentity()
AuthorizationIdentity
DistributedSecurityRealm.PrincipalDistributedIdentity. getAuthorizationIdentity()
AuthorizationIdentity
FailoverSecurityRealm.FailoverRealmIdentity. getAuthorizationIdentity()
AuthorizationIdentity
FileSystemSecurityRealm.Identity. getAuthorizationIdentity()
AuthorizationIdentity
JaasSecurityRealm.JaasRealmIdentity. getAuthorizationIdentity()
AuthorizationIdentity
KeyStoreBackedSecurityRealm.KeyStoreRealmIdentity. getAuthorizationIdentity()
AuthorizationIdentity
SimpleMapBackedSecurityRealm.SimpleMapRealmIdentity. getAuthorizationIdentity()
Methods in org.wildfly.security.auth.realm with parameters of type AuthorizationIdentity Modifier and Type Method Description private Attributes
AggregateSecurityRealm.Identity. combineAttributes(AuthorizationIdentity[] authorizationIdentities)
-
Uses of AuthorizationIdentity in org.wildfly.security.auth.realm.jdbc
Methods in org.wildfly.security.auth.realm.jdbc that return AuthorizationIdentity Modifier and Type Method Description AuthorizationIdentity
JdbcSecurityRealm.JdbcRealmIdentity. getAuthorizationIdentity()
-
Uses of AuthorizationIdentity in org.wildfly.security.auth.realm.ldap
Methods in org.wildfly.security.auth.realm.ldap that return AuthorizationIdentity Modifier and Type Method Description AuthorizationIdentity
LdapSecurityRealm.LdapRealmIdentity. getAuthorizationIdentity()
-
Uses of AuthorizationIdentity in org.wildfly.security.auth.realm.token
Methods in org.wildfly.security.auth.realm.token that return AuthorizationIdentity Modifier and Type Method Description AuthorizationIdentity
TokenSecurityRealm.TokenRealmIdentity. getAuthorizationIdentity()
-
Uses of AuthorizationIdentity in org.wildfly.security.auth.server
Fields in org.wildfly.security.auth.server declared as AuthorizationIdentity Modifier and Type Field Description private AuthorizationIdentity
SecurityIdentity. authorizationIdentity
Methods in org.wildfly.security.auth.server that return AuthorizationIdentity Modifier and Type Method Description default AuthorizationIdentity
RealmIdentity. getAuthorizationIdentity()
Get an authorization identity for this pre-authenticated identity.(package private) AuthorizationIdentity
SecurityIdentity. getAuthorizationIdentity()
Constructors in org.wildfly.security.auth.server with parameters of type AuthorizationIdentity Constructor Description SecurityIdentity(SecurityDomain securityDomain, Principal principal, RealmInfo realmInfo, AuthorizationIdentity authorizationIdentity, Map<String,RoleMapper> roleMappers, IdentityCredentials publicCredentials, IdentityCredentials privateCredentials)
-
Uses of AuthorizationIdentity in org.wildfly.security.auth.server.event
Fields in org.wildfly.security.auth.server.event declared as AuthorizationIdentity Modifier and Type Field Description private AuthorizationIdentity
RealmAuthorizationEvent. authorizationIdentity
private AuthorizationIdentity
RealmSuccessfulAuthenticationEvent. authorizationIdentity
Methods in org.wildfly.security.auth.server.event that return AuthorizationIdentity Modifier and Type Method Description AuthorizationIdentity
RealmAuthorizationEvent. getAuthorizationIdentity()
Get the authorization identity of this event.AuthorizationIdentity
RealmSuccessfulAuthenticationEvent. getAuthorizationIdentity()
Get the authorization identity.Constructors in org.wildfly.security.auth.server.event with parameters of type AuthorizationIdentity Constructor Description RealmAuthorizationEvent(AuthorizationIdentity authorizationIdentity, Principal principal)
Construct a new instance.RealmIdentityAuthorizationEvent(AuthorizationIdentity authorizationIdentity, Principal principal, Principal newPrincipal)
Construct a new instance.RealmIdentityFailedAuthorizationEvent(AuthorizationIdentity authorizationIdentity, Principal principal, Principal newPrincipal)
Construct a new instance.RealmIdentitySuccessfulAuthorizationEvent(AuthorizationIdentity authorizationIdentity, Principal principal, Principal newPrincipal)
Construct a new instance.RealmSuccessfulAuthenticationEvent(RealmIdentity realmIdentity, AuthorizationIdentity authorizationIdentity, Credential credential, Evidence evidence)
Construct a new instance. -
Uses of AuthorizationIdentity in org.wildfly.security.authz
Fields in org.wildfly.security.authz declared as AuthorizationIdentity Modifier and Type Field Description static AuthorizationIdentity
AuthorizationIdentity. EMPTY
The empty authorization identity.Methods in org.wildfly.security.authz that return AuthorizationIdentity Modifier and Type Method Description static AuthorizationIdentity
AuthorizationIdentity. basicIdentity(Supplier<Attributes> attributes, String string)
Create a basic authorization identity implementation.static AuthorizationIdentity
AuthorizationIdentity. basicIdentity(Supplier<Attributes> attributes, Supplier<Attributes> runtimeAttributes, String string)
Create a basic authorization identity implementation using the given attributes and runtime attributes.static AuthorizationIdentity
AuthorizationIdentity. basicIdentity(Attributes attributes)
Create a basic authorization identity implementation.static AuthorizationIdentity
AuthorizationIdentity. basicIdentity(AuthorizationIdentity authorizationIdentity, Attributes runtimeAttributes)
Create a basic authorization identity implementation using the given authorization identity and runtime attributes.Methods in org.wildfly.security.authz with parameters of type AuthorizationIdentity Modifier and Type Method Description static AuthorizationIdentity
AuthorizationIdentity. basicIdentity(AuthorizationIdentity authorizationIdentity, Attributes runtimeAttributes)
Create a basic authorization identity implementation using the given authorization identity and runtime attributes.Roles
RoleDecoder. decodeRoles(AuthorizationIdentity authorizationIdentity)
Decode the role set from the given authorization identity.Roles
SourceAddressRoleDecoder. decodeRoles(AuthorizationIdentity authorizationIdentity)
Decode the role set using the source IP address runtime attribute from the given authorization identity.
-