aboutsummaryrefslogtreecommitdiffstats
path: root/container-core
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-06-03 14:42:20 +0200
committergjoranv <gv@verizonmedia.com>2022-06-08 11:45:27 +0200
commit71da8f33e486a6ba0b958feeca0ade5df2cf25df (patch)
tree5ac6fba5da8d6312a97b2d588abf6c175f6edec9 /container-core
parent7b2f1f1eb72b81ebfb7907f8f5c1c08d6f4f2f15 (diff)
Remove on Vespa 8
Diffstat (limited to 'container-core')
-rw-r--r--container-core/abi-spec.json14
-rw-r--r--container-core/src/main/java/com/yahoo/jdisc/http/SecretStore.java23
2 files changed, 0 insertions, 37 deletions
diff --git a/container-core/abi-spec.json b/container-core/abi-spec.json
index 881c22cb482..35dd216eb0a 100644
--- a/container-core/abi-spec.json
+++ b/container-core/abi-spec.json
@@ -1751,20 +1751,6 @@
],
"fields": []
},
- "com.yahoo.jdisc.http.SecretStore": {
- "superClass": "java.lang.Object",
- "interfaces": [],
- "attributes": [
- "public",
- "interface",
- "abstract"
- ],
- "methods": [
- "public abstract java.lang.String getSecret(java.lang.String)",
- "public java.lang.String getSecret(java.lang.String, int)"
- ],
- "fields": []
- },
"com.yahoo.jdisc.http.ServerConfig$AccessLog$Builder": {
"superClass": "java.lang.Object",
"interfaces": [
diff --git a/container-core/src/main/java/com/yahoo/jdisc/http/SecretStore.java b/container-core/src/main/java/com/yahoo/jdisc/http/SecretStore.java
deleted file mode 100644
index 30e3e770a00..00000000000
--- a/container-core/src/main/java/com/yahoo/jdisc/http/SecretStore.java
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.jdisc.http;
-
-/**
- * An abstraction of a secret store for e.g passwords.
- * Implementations can be plugged in to provide passwords for various keys.
- *
- * @author bratseth
- * @author bjorncs
- * @deprecated Use com.yahoo.container.jdisc.secretstore.SecretStore
- */
-@Deprecated // Vespa 8
-public interface SecretStore {
-
- /** Returns the secret for this key */
- String getSecret(String key);
-
- /** Returns the secret for this key and version */
- default String getSecret(String key, int version) {
- throw new UnsupportedOperationException("SecretStore implementation does not support versioned secrets");
- }
-
-}