Interface PartialEvaluationStorageProvider
- All Known Implementing Classes:
JpaUserProvider
public interface PartialEvaluationStorageProvider
If a realm has the
Profile.Feature.ADMIN_FINE_GRAINED_AUTHZ
feature enabled,
realm resources storage providers can implement this interface if they want to apply custom predicates to queries
to filter their results based on the permissions available from the realm.-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final record
AnPartialEvaluationStorageProvider.EvaluationContext
instance provides access to contextual information when building a query for realm resources of a givenResourceType
. -
Method Summary
Modifier and TypeMethodDescriptionList<jakarta.persistence.criteria.Predicate>
getFilters
(PartialEvaluationStorageProvider.EvaluationContext evaluationContext) A callback method that will be called when building queries for realm resources to grant access to resources.List<jakarta.persistence.criteria.Predicate>
getNegateFilters
(PartialEvaluationStorageProvider.EvaluationContext evaluationContext) A callback method that will be called when building queries for realm resources to deny access to resources.
-
Method Details
-
getFilters
List<jakarta.persistence.criteria.Predicate> getFilters(PartialEvaluationStorageProvider.EvaluationContext evaluationContext) A callback method that will be called when building queries for realm resources to grant access to resources. It returns a list ofPredicate
instances representing the filters that should be applied to queries when querying realm resources.- Parameters:
evaluationContext
- the evaluation context.- Returns:
- the list of predicates
-
getNegateFilters
List<jakarta.persistence.criteria.Predicate> getNegateFilters(PartialEvaluationStorageProvider.EvaluationContext evaluationContext) A callback method that will be called when building queries for realm resources to deny access to resources. It returns a list ofPredicate
instances representing the filters that should be applied to queries when querying realm resources.- Parameters:
evaluationContext
- the evaluation context.- Returns:
- the list of predicates
-