Merge "restore a couple of fields' access to public"
authorJonathan Gathman <jgonap@stl.gathman.org>
Wed, 15 Jan 2020 16:42:26 +0000 (16:42 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 15 Jan 2020 16:42:26 +0000 (16:42 +0000)
auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Cred.java
auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Role.java

index 9aebee5..e2f3765 100644 (file)
@@ -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;
index 0b5e6b8..a61619e 100644 (file)
@@ -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<>();