summaryrefslogtreecommitdiffstats
path: root/infra/it/memory-benchmark/src/main/java/io/fd/honeycomb/benchmark/memory/config/StaticHoneycombConfiguration.java
diff options
context:
space:
mode:
Diffstat (limited to 'infra/it/memory-benchmark/src/main/java/io/fd/honeycomb/benchmark/memory/config/StaticHoneycombConfiguration.java')
-rw-r--r--infra/it/memory-benchmark/src/main/java/io/fd/honeycomb/benchmark/memory/config/StaticHoneycombConfiguration.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/infra/it/memory-benchmark/src/main/java/io/fd/honeycomb/benchmark/memory/config/StaticHoneycombConfiguration.java b/infra/it/memory-benchmark/src/main/java/io/fd/honeycomb/benchmark/memory/config/StaticHoneycombConfiguration.java
index 6bcf7ef68..03aac84b5 100644
--- a/infra/it/memory-benchmark/src/main/java/io/fd/honeycomb/benchmark/memory/config/StaticHoneycombConfiguration.java
+++ b/infra/it/memory-benchmark/src/main/java/io/fd/honeycomb/benchmark/memory/config/StaticHoneycombConfiguration.java
@@ -22,7 +22,6 @@ import java.io.Closeable;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
-import java.util.Optional;
/**
* Static configuration to prevent injecting of properties from json fles
@@ -33,15 +32,9 @@ public class StaticHoneycombConfiguration extends HoneycombConfiguration impleme
this.peristConfigPath = persistConfigPath;
this.peristContextPath = persistContextPath;
- this.username = "admin";
- this.password = "admin";
this.notificationServiceQueueDepth = 1;
- this.restconfBindingAddress = Optional.of("/restconf");
- this.restconfPort = Optional.of(8187);
- this.restconfBindingAddress = Optional.of("127.0.0.1");
this.persistedConfigRestorationType = "Merge";
this.persistedContextRestorationType = "Merge";
- this.restconfWebsocketPort = Optional.of(7890);
}
@Override
@@ -50,21 +43,6 @@ public class StaticHoneycombConfiguration extends HoneycombConfiguration impleme
}
@Override
- public boolean isRestconfHttpsEnabled() {
- return false;
- }
-
- @Override
- public boolean isRestconfHttpEnabled() {
- return true;
- }
-
- @Override
- public boolean isRestconfEnabled() {
- return true;
- }
-
- @Override
public boolean isNetconfTcpEnabled() {
return false;
}