Uses of Interface
org.wildfly.security.authz.Roles
-
Packages that use Roles Package Description org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.authz Elytron's Authorization API -
-
Uses of Roles in org.wildfly.security.auth.server
Fields in org.wildfly.security.auth.server with type parameters of type Roles Modifier and Type Field Description private Function<SecurityIdentity,Roles>SecurityIdentity. defaultRolesMethods in org.wildfly.security.auth.server that return Roles Modifier and Type Method Description RolesSecurityIdentity. getRoles()Get the roles associated with this identity.RolesSecurityIdentity. getRoles(String category)Get the mapped roles associated with this identity.RolesSecurityIdentity. getRoles(String category, boolean fallbackToDefault)Get the mapped roles associated with this identity.(package private) RolesSecurityDomain. mapRoles(SecurityIdentity securityIdentity)Constructor parameters in org.wildfly.security.auth.server with type arguments of type Roles Constructor Description SecurityIdentity(SecurityIdentity old, Function<SecurityIdentity,Roles> defaultRoles) -
Uses of Roles in org.wildfly.security.authz
Classes in org.wildfly.security.authz that implement Roles Modifier and Type Class Description (package private) classAddPrefixRoles(package private) classAddSuffixRoles(package private) classDifferenceRoles(package private) classDisjunctionRoles(package private) classIntersectionRoles(package private) classMappedRoles(package private) classOneRole(package private) classRegexRolesA regex roles.(package private) classUnionRolesFields in org.wildfly.security.authz declared as Roles Modifier and Type Field Description private RolesAddPrefixRoles. delegateprivate RolesAddSuffixRoles. delegateprivate RolesMappedRoles. delegateprivate RolesRegexRoles. delegateprivate RolesDifferenceRoles. leftprivate RolesDisjunctionRoles. leftprivate RolesIntersectionRoles. leftprivate RolesUnionRoles. leftstatic RolesRoles. NONEThe empty roles collection.private RolesDifferenceRoles. rightprivate RolesDisjunctionRoles. rightprivate RolesIntersectionRoles. rightprivate RolesUnionRoles. rightprivate RolesSourceAddressRoleDecoder. rolesMethods in org.wildfly.security.authz that return Roles Modifier and Type Method Description RolesOneRole. addPrefix(String prefix)default RolesRoles. addPrefix(String prefix)Get a roles collection which adds a prefix to all role names.RolesOneRole. addSuffix(String suffix)default RolesRoles. addSuffix(String suffix)Get a roles collection which adds a suffix to all role names.RolesOneRole. and(Roles other)default RolesRoles. and(Roles other)Get the intersection of this collection and another.RolesRoleDecoder. decodeRoles(AuthorizationIdentity authorizationIdentity)Decode the role set from the given authorization identity.RolesSourceAddressRoleDecoder. decodeRoles(AuthorizationIdentity authorizationIdentity)Decode the role set using the source IP address runtime attribute from the given authorization identity.static RolesRoles. fromSet(Set<String> set)Construct a new roles collection from a set.RolesMappedRoleMapper. mapRoles(Roles rolesToMap)RolesRegexRoleMapper. mapRoles(Roles rolesToMap)RolesRoleMapper. mapRoles(Roles rolesToMap)Returns a set of strings representing the roles mapped from the given roles in their raw form.RolesOneRole. minus(Roles other)default RolesRoles. minus(Roles other)Get a roles collection which consists of the roles in this collection minus the roles in the other collection.static RolesRoles. of(String role)Construct a role set consisting of a single role.RolesOneRole. or(Roles other)default RolesRoles. or(Roles other)Get the union of this collection and another.default RolesRoles. xor(Roles other)Get the disjunction of this collection and another.Methods in org.wildfly.security.authz with parameters of type Roles Modifier and Type Method Description RolesOneRole. and(Roles other)default RolesRoles. and(Roles other)Get the intersection of this collection and another.static RoleMapperRoleMapper. constant(Roles roles)Create a role mapper that always returns the same set of roles regardless of the input.PermissionVerifierPermissionMapper. mapPermissions(PermissionMappable permissionMappable, Roles roles)Returns aPermissionVerifierwith all the permissions associated with the given information.PermissionVerifierSimplePermissionMapper. mapPermissions(PermissionMappable permissionMappable, Roles roles)RolesMappedRoleMapper. mapRoles(Roles rolesToMap)RolesRegexRoleMapper. mapRoles(Roles rolesToMap)RolesRoleMapper. mapRoles(Roles rolesToMap)Returns a set of strings representing the roles mapped from the given roles in their raw form.RolesOneRole. minus(Roles other)default RolesRoles. minus(Roles other)Get a roles collection which consists of the roles in this collection minus the roles in the other collection.RolesOneRole. or(Roles other)default RolesRoles. or(Roles other)Get the union of this collection and another.static Set<String>Roles. toSet(Roles roles)Returns a set (immutable) containing roles from a roles collection.default RolesRoles. xor(Roles other)Get the disjunction of this collection and another.Constructors in org.wildfly.security.authz with parameters of type Roles Constructor Description AddPrefixRoles(Roles delegate, String prefix)AddSuffixRoles(Roles delegate, String suffix)DifferenceRoles(Roles left, Roles right)DisjunctionRoles(Roles left, Roles right)IntersectionRoles(Roles left, Roles right)MappedRoles(Roles delegate, Map<String,Set<String>> reverseRoleMap)RegexRoles(Roles delegate, Pattern pattern, String replace, boolean keepNonMapped, boolean replaceAll)SourceAddressRoleDecoder(String sourceAddress, Roles roles)Construct a new instance.SourceAddressRoleDecoder(Pattern sourceAddressPattern, Roles roles)Construct a new instance.UnionRoles(Roles left, Roles right)
-