aboutsummaryrefslogtreecommitdiffstats
path: root/container-disc/src/main/java/com/yahoo/container/jdisc/SecretStoreProvider.java
blob: 0c72716cf2c81b65abba40838f7467efe49d1928 (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
35
36
37
38
// Copyright Vespa.ai. 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.jdisc.secretstore.SecretNotFoundException;
import com.yahoo.container.jdisc.secretstore.SecretStore;
import com.yahoo.container.di.componentgraph.Provider;

import java.util.List;

public class SecretStoreProvider implements Provider<SecretStore> {

    private static final ThrowingSecretStore instance = new ThrowingSecretStore();

    @Override
    public SecretStore get() { return instance; }

    @Override
    public void deconstruct() { }

    private static final class ThrowingSecretStore implements SecretStore {

        @Override
        public String getSecret(String key) {
            throw new UnsupportedOperationException("A secret store is not available");
        }

        @Override
        public String getSecret(String key, int version) {
            throw new UnsupportedOperationException("A secret store is not available");
        }

        @Override
        public List<Integer> listSecretVersions(String key) {
            throw new SecretNotFoundException("A secret store is not available");
        }
    }

}