summaryrefslogtreecommitdiffstats
path: root/container-disc
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-disc
parent7b2f1f1eb72b81ebfb7907f8f5c1c08d6f4f2f15 (diff)
Remove on Vespa 8
Diffstat (limited to 'container-disc')
-rw-r--r--container-disc/src/main/java/com/yahoo/container/jdisc/DeprecatedSecretStoreProvider.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/container-disc/src/main/java/com/yahoo/container/jdisc/DeprecatedSecretStoreProvider.java b/container-disc/src/main/java/com/yahoo/container/jdisc/DeprecatedSecretStoreProvider.java
deleted file mode 100644
index 3292030784b..00000000000
--- a/container-disc/src/main/java/com/yahoo/container/jdisc/DeprecatedSecretStoreProvider.java
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.container.jdisc;
-
-import com.yahoo.container.di.componentgraph.Provider;
-
-/**
- * An secret store provider which provides a factory which throws exception on
- * invocation - as no secret store is currently provided by default.
- * The purpose of this is to provide a secret store for injection in the case where
- * no secret store component is provided.
- *
- * @author bratseth
- */
-@SuppressWarnings({"deprecation", "unused"})
-public class DeprecatedSecretStoreProvider implements Provider<com.yahoo.jdisc.http.SecretStore> {
-
- private static final ThrowingSecretStore instance = new ThrowingSecretStore();
-
- @Override
- public com.yahoo.jdisc.http.SecretStore get() { return instance; }
-
- @Override
- public void deconstruct() { }
-
- private static final class ThrowingSecretStore implements com.yahoo.jdisc.http.SecretStore {
-
- @Override
- public String getSecret(String key) {
- throw new UnsupportedOperationException("A secret store is not available");
- }
-
- }
-
-}