Uses of Interface
org.wildfly.security.authz.PermissionMapper
-
Packages that use PermissionMapper Package Description org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.authz Elytron's Authorization API -
-
Uses of PermissionMapper in org.wildfly.security.auth.server
Fields in org.wildfly.security.auth.server declared as PermissionMapper Modifier and Type Field Description private PermissionMapper
SecurityDomain.Builder. permissionMapper
private PermissionMapper
SecurityDomain. permissionMapper
Methods in org.wildfly.security.auth.server with parameters of type PermissionMapper Modifier and Type Method Description SecurityDomain.Builder
SecurityDomain.Builder. setPermissionMapper(PermissionMapper permissionMapper)
Set the permission mapper for this security domain, which will be used to obtain and map permissions based on the identities from this security domain. -
Uses of PermissionMapper in org.wildfly.security.authz
Classes in org.wildfly.security.authz that implement PermissionMapper Modifier and Type Class Description class
SimplePermissionMapper
A simplePermissionMapper
implementation that maps to pre-definedPermissionVerifier
instances.Fields in org.wildfly.security.authz declared as PermissionMapper Modifier and Type Field Description static PermissionMapper
PermissionMapper. EMPTY_PERMISSION_MAPPER
A default implementation that does nothing but returns an empty and read-onlyPermissionVerifier
.Methods in org.wildfly.security.authz that return PermissionMapper Modifier and Type Method Description default PermissionMapper
PermissionMapper. and(PermissionMapper other)
Returns a new mapper where thePermissionVerifier
created by thisPermissionMapper
is combined with thePermissionVerifier
of theother
PermissionMapper
using 'and'.PermissionMapper
SimplePermissionMapper.Builder. build()
Build and return the resultingPermissionMapper
.static PermissionMapper
PermissionMapper. createConstant(PermissionVerifier verifier)
Returns a new mapper that maps all to pre-definedPermissionVerifier
instance.default PermissionMapper
PermissionMapper. or(PermissionMapper other)
Returns a new mapper where thePermissionVerifier
created by thisPermissionMapper
is combined with thePermissionVerifier
of theother
PermissionMapper
using 'or'.default PermissionMapper
PermissionMapper. unless(PermissionMapper other)
Returns a new mapper where thePermissionVerifier
created by thisPermissionMapper
is combined with thePermissionVerifier
of theother
PermissionMapper
using 'unless'.default PermissionMapper
PermissionMapper. xor(PermissionMapper other)
Returns a new mapper where thePermissionVerifier
created by thisPermissionMapper
is combined with thePermissionVerifier
of theother
PermissionMapper
using 'xor'.Methods in org.wildfly.security.authz with parameters of type PermissionMapper Modifier and Type Method Description default PermissionMapper
PermissionMapper. and(PermissionMapper other)
Returns a new mapper where thePermissionVerifier
created by thisPermissionMapper
is combined with thePermissionVerifier
of theother
PermissionMapper
using 'and'.default PermissionMapper
PermissionMapper. or(PermissionMapper other)
Returns a new mapper where thePermissionVerifier
created by thisPermissionMapper
is combined with thePermissionVerifier
of theother
PermissionMapper
using 'or'.default PermissionMapper
PermissionMapper. unless(PermissionMapper other)
Returns a new mapper where thePermissionVerifier
created by thisPermissionMapper
is combined with thePermissionVerifier
of theother
PermissionMapper
using 'unless'.default PermissionMapper
PermissionMapper. xor(PermissionMapper other)
Returns a new mapper where thePermissionVerifier
created by thisPermissionMapper
is combined with thePermissionVerifier
of theother
PermissionMapper
using 'xor'.
-