Package org.keycloak.authorization
Class FGAPEvaluation
java.lang.Object
org.keycloak.authorization.FGAPEvaluation
- All Implemented Interfaces:
Evaluation
-
Constructor Summary
ConstructorsConstructorDescriptionFGAPEvaluation
(Evaluation evaluation, Map<Scope, Set<Resource>> scopesGrantedByResource) -
Method Summary
Modifier and TypeMethodDescriptionvoid
deny()
Denies the requested permission.void
Denies the requested permission if a decision was not made yet.Returns theEvaluationContext
.Returns the parent policy (a permission) of the policy being evaluated.Returns theResourcePermission
to be evaluated.Returns thePolicy
.getRealm()
Returns aRealm
that can be used by policies to query information.void
grant()
Grants the requested permission to the caller.boolean
If the given scope should not be granted when the givendeniedPolicy
denies access to a resource or a specific scope.boolean
If the given scope should be granted when the givengrantedPolicy
is granting access to a resource or a specific scope.void
setEffect
(Decision.Effect effect)
-
Constructor Details
-
FGAPEvaluation
-
-
Method Details
-
isGranted
Description copied from interface:Evaluation
If the given scope should be granted when the givengrantedPolicy
is granting access to a resource or a specific scope.- Specified by:
isGranted
in interfaceEvaluation
- Parameters:
grantedPolicy
- the policy granting accessgrantedScope
- the scope that should be granted- Returns:
true
if the scope is granted. Otherwise, returnsfalse
-
isDenied
Description copied from interface:Evaluation
If the given scope should not be granted when the givendeniedPolicy
denies access to a resource or a specific scope.- Specified by:
isDenied
in interfaceEvaluation
- Parameters:
deniedPolicy
- the policy granting accessdeniedScope
- the scope that should be granted- Returns:
true
if the scope is granted. Otherwise, returnsfalse
-
getPermission
Description copied from interface:Evaluation
Returns theResourcePermission
to be evaluated.- Specified by:
getPermission
in interfaceEvaluation
- Returns:
- the permission to be evaluated
-
getContext
Description copied from interface:Evaluation
Returns theEvaluationContext
. Which provides access to the whole evaluation runtime context.- Specified by:
getContext
in interfaceEvaluation
- Returns:
- the evaluation context
-
getPolicy
Description copied from interface:Evaluation
Returns thePolicy
. being evaluated.- Specified by:
getPolicy
in interfaceEvaluation
- Returns:
- the evaluation context
-
getRealm
Description copied from interface:Evaluation
Returns aRealm
that can be used by policies to query information.- Specified by:
getRealm
in interfaceEvaluation
- Returns:
- a
Realm
instance
-
getAuthorizationProvider
- Specified by:
getAuthorizationProvider
in interfaceEvaluation
-
grant
public void grant()Description copied from interface:Evaluation
Grants the requested permission to the caller.- Specified by:
grant
in interfaceEvaluation
-
deny
public void deny()Description copied from interface:Evaluation
Denies the requested permission.- Specified by:
deny
in interfaceEvaluation
-
denyIfNoEffect
public void denyIfNoEffect()Description copied from interface:Evaluation
Denies the requested permission if a decision was not made yet.- Specified by:
denyIfNoEffect
in interfaceEvaluation
-
getParentPolicy
Description copied from interface:Evaluation
Returns the parent policy (a permission) of the policy being evaluated.- Specified by:
getParentPolicy
in interfaceEvaluation
- Returns:
- the parent policy
-
getEffect
- Specified by:
getEffect
in interfaceEvaluation
-
setEffect
- Specified by:
setEffect
in interfaceEvaluation
-