You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by ab...@apache.org on 2021/09/08 16:51:01 UTC

[ranger] branch ranger-2.2 updated: RANGER-3397: Update ACL computation to (optionally) expand Ranger Roles to users and groups and include chained-plugins in ACL computation - Part 2

This is an automated email from the ASF dual-hosted git repository.

abhay pushed a commit to branch ranger-2.2
in repository https://gitbox.apache.org/repos/asf/ranger.git


The following commit(s) were added to refs/heads/ranger-2.2 by this push:
     new 7fb90c3  RANGER-3397: Update ACL computation to (optionally) expand Ranger Roles to users and groups and include chained-plugins in ACL computation - Part 2
7fb90c3 is described below

commit 7fb90c3941dbb5c381d9be967888b681c6b04fcb
Author: Abhay Kulkarni <ab...@apache.org>
AuthorDate: Wed Sep 8 09:35:48 2021 -0700

    RANGER-3397: Update ACL computation to (optionally) expand Ranger Roles to users and groups and include chained-plugins in ACL computation - Part 2
---
 .../main/java/org/apache/ranger/plugin/service/RangerBasePlugin.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/agents-common/src/main/java/org/apache/ranger/plugin/service/RangerBasePlugin.java b/agents-common/src/main/java/org/apache/ranger/plugin/service/RangerBasePlugin.java
index 3ad74e5..99c48d0 100644
--- a/agents-common/src/main/java/org/apache/ranger/plugin/service/RangerBasePlugin.java
+++ b/agents-common/src/main/java/org/apache/ranger/plugin/service/RangerBasePlugin.java
@@ -147,6 +147,8 @@ public class RangerBasePlugin {
 
 	public RangerAuthContext getCurrentRangerAuthContext() { return currentAuthContext; }
 
+	public List<RangerChainedPlugin> getChainedPlugins() { return chainedPlugins; }
+
 	// For backward compatibility
 	public RangerAuthContext createRangerAuthContext() { return currentAuthContext; }