aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/security/KeyServiceMock.java
blob: 46fa2a593c5c12c5ac28c81f354806e81555fe2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
    }

}