Record Class PartialEvaluationStorageProvider.EvaluationContext
java.lang.Object
java.lang.Record
org.keycloak.authorization.policy.provider.PartialEvaluationStorageProvider.EvaluationContext
- Record Components:
resourceType
- the type of the resource to querycriteriaQuery
- the query to rely on when building predicatespath
- the path for the root entity
- Enclosing interface:
- PartialEvaluationStorageProvider
public static record PartialEvaluationStorageProvider.EvaluationContext(ResourceType resourceType, jakarta.persistence.criteria.CriteriaQuery<?> criteriaQuery, jakarta.persistence.criteria.Path<?> path, Set<String> allowedGroupIds, Set<String> deniedGroupIds)
extends Record
An
PartialEvaluationStorageProvider.EvaluationContext
instance provides access to contextual information when building a query for realm
resources of a given ResourceType
.-
Constructor Summary
ConstructorsConstructorDescriptionEvaluationContext
(ResourceType resourceType, jakarta.persistence.criteria.CriteriaQuery<?> criteriaQuery, jakarta.persistence.criteria.Path<?> path, Set<String> allowedGroupIds, Set<String> deniedGroupIds) Creates an instance of aEvaluationContext
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theallowedGroupIds
record component.jakarta.persistence.criteria.CriteriaQuery<?>
Returns the value of thecriteriaQuery
record component.Returns the value of thedeniedGroupIds
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.jakarta.persistence.criteria.Path<?>
path()
Returns the value of thepath
record component.Returns the value of theresourceType
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
EvaluationContext
public EvaluationContext(ResourceType resourceType, jakarta.persistence.criteria.CriteriaQuery<?> criteriaQuery, jakarta.persistence.criteria.Path<?> path, Set<String> allowedGroupIds, Set<String> deniedGroupIds) Creates an instance of aEvaluationContext
record class.- Parameters:
resourceType
- the value for theresourceType
record componentcriteriaQuery
- the value for thecriteriaQuery
record componentpath
- the value for thepath
record componentallowedGroupIds
- the value for theallowedGroupIds
record componentdeniedGroupIds
- the value for thedeniedGroupIds
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
resourceType
Returns the value of theresourceType
record component.- Returns:
- the value of the
resourceType
record component
-
criteriaQuery
public jakarta.persistence.criteria.CriteriaQuery<?> criteriaQuery()Returns the value of thecriteriaQuery
record component.- Returns:
- the value of the
criteriaQuery
record component
-
path
public jakarta.persistence.criteria.Path<?> path()Returns the value of thepath
record component.- Returns:
- the value of the
path
record component
-
allowedGroupIds
Returns the value of theallowedGroupIds
record component.- Returns:
- the value of the
allowedGroupIds
record component
-
deniedGroupIds
Returns the value of thedeniedGroupIds
record component.- Returns:
- the value of the
deniedGroupIds
record component
-