Uses of Interface
org.wildfly.security.authz.RoleMapper
Packages that use RoleMapper
Package
Description
Server side of authentication provided by Elytron.
Elytron's Authorization API
-
Uses of RoleMapper in org.wildfly.security.auth.server
Methods in org.wildfly.security.auth.server that return RoleMapperModifier and TypeMethodDescriptionSecurityDomain.RealmBuilder.getRoleMapper()Get the role mapper.Methods in org.wildfly.security.auth.server that return types with arguments of type RoleMapperModifier and TypeMethodDescriptionSecurityDomain.Builder.getCategoryRoleMappers()Get the category role mapper map.Methods in org.wildfly.security.auth.server with parameters of type RoleMapperModifier and TypeMethodDescriptionSecurityDomain.Builder.setRoleMapper(RoleMapper roleMapper) Set the role mapper for this security domain, which will be used to perform the last mapping before returning the roles associated with an identity obtained from this security domain.SecurityDomain.RealmBuilder.setRoleMapper(RoleMapper roleMapper) Set the role mapper.SecurityIdentity.withDefaultRoleMapper(RoleMapper roleMapper) Attempt to create a new identity which wraps the default roles with a default role mapper.SecurityIdentity.withRoleMapper(String category, RoleMapper roleMapper) Attempt to create a new identity which replaces a role mapper category on the current identity.Method parameters in org.wildfly.security.auth.server with type arguments of type RoleMapperModifier and TypeMethodDescriptionvoidSecurityDomain.Builder.setCategoryRoleMappers(Map<String, RoleMapper> categoryRoleMappers) Set the category role mapper map. -
Uses of RoleMapper in org.wildfly.security.authz
Classes in org.wildfly.security.authz that implement RoleMapperModifier and TypeClassDescriptionclassA simple mapping role mapper.classA pattern role mapper.Fields in org.wildfly.security.authz declared as RoleMapperModifier and TypeFieldDescriptionstatic final RoleMapperRoleMapper.IDENTITY_ROLE_MAPPERA default implementation that does nothing but return the given roles.Methods in org.wildfly.security.authz that return RoleMapperModifier and TypeMethodDescriptionstatic RoleMapperRoleMapper.aggregate(RoleMapper... mappers) Create an aggregate role mapper.static RoleMapperRoleMapper.aggregate(RoleMapper mapper1, RoleMapper mapper2) Create an aggregate role mapper.default RoleMapperRoleMapper.and(RoleMapper other) Create a role mapper which is the intersection (logical "and") of the results of this and the given role mapper.static RoleMapperCreate a role mapper that always returns the same set of roles regardless of the input.default RoleMapperRoleMapper.minus(RoleMapper other) Create a role mapper which contains all the roles mapped by this mapper, minus the roles mapped by the given role mapper.default RoleMapperRoleMapper.or(RoleMapper other) Create a role mapper which is the union (logical "or") of the results of this and the given role mapper.default RoleMapperRoleMapper.xor(RoleMapper other) Create a role mapper which is the symmetric difference (or disjunction, or logical "xor") of the results of this and the given role mapper.Methods in org.wildfly.security.authz with parameters of type RoleMapperModifier and TypeMethodDescriptionstatic RoleMapperRoleMapper.aggregate(RoleMapper... mappers) Create an aggregate role mapper.static RoleMapperRoleMapper.aggregate(RoleMapper mapper1, RoleMapper mapper2) Create an aggregate role mapper.default RoleMapperRoleMapper.and(RoleMapper other) Create a role mapper which is the intersection (logical "and") of the results of this and the given role mapper.default RoleMapperRoleMapper.minus(RoleMapper other) Create a role mapper which contains all the roles mapped by this mapper, minus the roles mapped by the given role mapper.default RoleMapperRoleMapper.or(RoleMapper other) Create a role mapper which is the union (logical "or") of the results of this and the given role mapper.default RoleMapperRoleMapper.xor(RoleMapper other) Create a role mapper which is the symmetric difference (or disjunction, or logical "xor") of the results of this and the given role mapper.