Class RolePolicyProvider
java.lang.Object
org.keycloak.authorization.policy.provider.role.RolePolicyProvider
- All Implemented Interfaces:
PartialEvaluationPolicyProvider
,PolicyProvider
,Provider
public class RolePolicyProvider
extends Object
implements PolicyProvider, PartialEvaluationPolicyProvider
- Author:
- Pedro Igor
-
Constructor Summary
ConstructorsConstructorDescriptionRolePolicyProvider
(BiFunction<Policy, AuthorizationProvider, RolePolicyRepresentation> representationFunction) -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
void
evaluate
(Evaluation evaluation) boolean
evaluate
(KeycloakSession session, Policy policy, UserModel adminUser) Evaluate if the givenpolicy
grants access to the givensubject
.getPermissions
(KeycloakSession session, ResourceType resourceType, UserModel subject) Returns a list ofPolicy
instances representing the permissions that apply to a givensubject
when partially evaluating the realm resources that can be accessed.boolean
If partial evaluation is supported for the givenpolicy
.
-
Constructor Details
-
RolePolicyProvider
public RolePolicyProvider(BiFunction<Policy, AuthorizationProvider, RolePolicyRepresentation> representationFunction)
-
-
Method Details
-
evaluate
- Specified by:
evaluate
in interfacePolicyProvider
-
close
public void close() -
getPermissions
public Stream<Policy> getPermissions(KeycloakSession session, ResourceType resourceType, UserModel subject) Description copied from interface:PartialEvaluationPolicyProvider
Returns a list ofPolicy
instances representing the permissions that apply to a givensubject
when partially evaluating the realm resources that can be accessed.- Specified by:
getPermissions
in interfacePartialEvaluationPolicyProvider
- Parameters:
session
- the sessionresourceType
- the type of the resourcesubject
- the subject- Returns:
- the permissions that apply to the given
subject
-
evaluate
Description copied from interface:PartialEvaluationPolicyProvider
Evaluate if the givenpolicy
grants access to the givensubject
.- Specified by:
evaluate
in interfacePartialEvaluationPolicyProvider
- Parameters:
session
- the sessionpolicy
- the policyadminUser
- the subject- Returns:
true
if access is granted. Otherwise, returnsfalse
-
supports
Description copied from interface:PartialEvaluationPolicyProvider
If partial evaluation is supported for the givenpolicy
.- Specified by:
supports
in interfacePartialEvaluationPolicyProvider
- Parameters:
policy
- the policy- Returns:
true
if supported. Otherwise, returnsfalse
-