fateh288 commented on code in PR #410: URL: https://github.com/apache/ranger/pull/410#discussion_r1831842953
########## agents-common/src/main/java/org/apache/ranger/plugin/policyevaluator/RangerDefaultPolicyEvaluator.java: ########## @@ -1512,4 +1504,27 @@ private List<RangerConditionEvaluator> createPolicyConditionEvaluators(RangerPol return ret; } + private static boolean isMatchForResourceMatchingScope(final RangerAccessRequest.ResourceMatchingScope scope, final RangerPolicyResourceMatcher.MatchType matchType, boolean isAnyMatch) { + boolean ret = false; + if (isAnyMatch){ + ret = matchType != RangerPolicyResourceMatcher.MatchType.NONE; + } + else if (scope!=null) { + switch (scope) { + case SELF_OR_DESCENDANTS: { + ret = matchType != RangerPolicyResourceMatcher.MatchType.NONE; Review Comment: This would be out of scope for this PR. SELF_OR_DESCENDANT ResourceMatchingScope is being used in many other places of the code. We would need more analysis and testing for making changes to this part of the code. This PR tries to keep current behavior as is. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ranger.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org