summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandreer <andreer@verizonmedia.com>2019-06-14 10:55:42 +0200
committerandreer <andreer@verizonmedia.com>2019-06-19 12:45:25 +0200
commit92907548d816bfd1d36bfe406732f615ab646e78 (patch)
tree244b6f3eb2e2061550bb572c01665d8ea593f0c2
parent33cb6ff8182865fa3e564fca307a4d6137e045b9 (diff)
add tlsSecretsKeyName to TestProperties
-rw-r--r--config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
index 0a54dd6790d..becc46484f4 100644
--- a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
+++ b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
@@ -37,6 +37,7 @@ public class TestProperties implements ModelContext.Properties {
private boolean useFdispatchByDefault = true;
private boolean dispatchWithProtobuf = true;
private boolean useAdaptiveDispatch = false;
+ private String tlsSecretsKeyName = null;
@Override public boolean multitenant() { return multitenant; }
@@ -54,6 +55,7 @@ public class TestProperties implements ModelContext.Properties {
@Override public boolean useDedicatedNodeForLogserver() { return useDedicatedNodeForLogserver; }
@Override public boolean useFdispatchByDefault() { return useFdispatchByDefault; }
@Override public boolean dispatchWithProtobuf() { return dispatchWithProtobuf; }
+ @Override public String tlsSecretsKeyName() { return tlsSecretsKeyName; }
public TestProperties setApplicationId(ApplicationId applicationId) {
this.applicationId = applicationId;
@@ -86,6 +88,11 @@ public class TestProperties implements ModelContext.Properties {
}
+ public TestProperties setTlsSecretsKeyName(String tlsSecretsKeyName) {
+ this.tlsSecretsKeyName = tlsSecretsKeyName;
+ return this;
+ }
+
public static class Spec implements ConfigServerSpec {
private final String hostName;