Uses of Interface
org.wildfly.security.authz.AuthorizationIdentity
-
Packages that use AuthorizationIdentity Package Description 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.server
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. -
Uses of AuthorizationIdentity in org.wildfly.security.auth.server.event
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.
-