X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aaf%2Fauthz.git;a=blobdiff_plain;f=auth%2Fauth-batch%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faaf%2Fauth%2Fbatch%2Fhelpers%2FFuture.java;fp=auth%2Fauth-batch%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faaf%2Fauth%2Fbatch%2Fhelpers%2FFuture.java;h=67923e80e0e9a618beace4a6502c9b56889e028a;hp=4bbab9d3e8e7198968d3c964c76359ac3bf74be5;hb=78ccdcc1d1c29760e4cf833f94df62e1c5aa733f;hpb=a3b442a09aa3666662003d7c8a5ed69ee24a373e diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Future.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Future.java index 4bbab9d3..67923e80 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Future.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Future.java @@ -49,14 +49,14 @@ import com.datastax.driver.core.SimpleStatement; import com.datastax.driver.core.Statement; public class Future implements CacheChange.Data, Comparable { - public static final Map data = new TreeMap<>(); - public static final Map> byRole = new TreeMap<>(); + protected static final Map data = new TreeMap<>(); + protected static final Map> byRole = new TreeMap<>(); public final FutureDAO.Data fdd; public final String role; // derived private static final CacheChange cache = new CacheChange<>(); - public static Creator v2_0_17 = new Creator() { + public static final Creator v2_0_17 = new Creator() { @Override public Future create(Row row) { return new Future(row.getUUID(0),row.getString(1),row.getString(2), @@ -69,7 +69,7 @@ public class Future implements CacheChange.Data, Comparable { } }; - public static Creator withConstruct = new Creator() { + public static final Creator withConstruct = new Creator() { @Override public String select() { return "select id,memo,target,start,expires,construct from authz.future";