summaryrefslogtreecommitdiffstats
path: root/container-disc/src/main/java/com/yahoo/container/jdisc/SecretStoreProvider.java
blob: d966e66f50290097817fd22a08ba9ddac872325c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright 2017 Yahoo Holdings. 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 SecretStoreProvider 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");
        }

    }

}