summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Gathman <jgonap@stl.gathman.org>2020-01-15 16:42:26 +0000
committerGerrit Code Review <gerrit@onap.org>2020-01-15 16:42:26 +0000
commit165e298554f06ecd0545df604e11736ebf71566d (patch)
tree1522e3d70b5c98fca763747055d4823f143131ff
parent9dab8be3addc9b1bcf650b35d3834f99200cb957 (diff)
parent9a152c4fed4678049b63f53cd94a558b2d6e2cd7 (diff)
Merge "restore a couple of fields' access to public"
-rw-r--r--auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Cred.java2
-rw-r--r--auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Role.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Cred.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Cred.java
index 9aebee52..e2f37651 100644
--- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Cred.java
+++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Cred.java
@@ -49,7 +49,7 @@ import com.datastax.driver.core.Statement;
public class Cred {
public static final SortedMap<String,Cred> data = new TreeMap<>();
- protected static final SortedMap<String,List<Cred>> byNS = new TreeMap<>();
+ public static final SortedMap<String,List<Cred>> byNS = new TreeMap<>();
public final String id;
public final List<Instance> instances;
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Role.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Role.java
index 0b5e6b8b..a61619ea 100644
--- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Role.java
+++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Role.java
@@ -43,8 +43,8 @@ import com.datastax.driver.core.SimpleStatement;
import com.datastax.driver.core.Statement;
public class Role implements Comparable<Role> {
- protected static final SortedMap<Role,Set<String>> data = new TreeMap<>();
- protected static final SortedMap<String,Role> keys = new TreeMap<>();
+ public static final SortedMap<Role,Set<String>> data = new TreeMap<>();
+ public static final SortedMap<String,Role> keys = new TreeMap<>();
public static final SortedMap<String,Role> byName = new TreeMap<>();
private static List<Role> deleteRoles = new ArrayList<>();