aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/SecretStore.java
blob: 4f739c5bd78ee1d00627973ddd27f7a69a53ae5d (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
// Copyright 2017 Yahoo Holdings. 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");
    }

}