Added Redis Support
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-tca / src / test / java / org / onap / dcae / apod / analytics / cdap / tca / settings / TCATestAppPreferences.java
index 729630c..ad299b9 100644 (file)
@@ -173,4 +173,14 @@ public class TCATestAppPreferences extends TCAAppPreferences {
     public void setAaiVMEnrichmentAPIPath(String aaiVMEnrichmentAPIPath) {
         this.aaiVMEnrichmentAPIPath = aaiVMEnrichmentAPIPath;
     }
+
+    public void setEnableRedisCaching(final Boolean enableRedisCaching) {
+        this.enableRedisCaching = enableRedisCaching;
+    }
+
+    public void setRedisHosts(final String redisHosts) {
+        this.redisHosts = redisHosts;
+    }
+
+
 }