aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/security/KeyServiceMock.java
blob: d2a4b675f6dfcbff013fb329b609bfc32b0d79e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.security;

/**
 * @author mpolden
 */
public class KeyServiceMock implements KeyService {

    @Override
    public String getSecret(String key) {
        return "fake-secret-for-" + key;
    }

}