summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/athens/Athens.java
blob: 0635fb850b70a5a771c07734e7a404824ee5ec1d (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.vespa.hosted.controller.api.integration.athens;

import com.yahoo.vespa.hosted.controller.api.identifiers.AthensDomain;
import com.yahoo.vespa.hosted.controller.api.identifiers.ScrewdriverId;
import com.yahoo.vespa.hosted.controller.api.identifiers.UserId;

/**
 * Interface for integrating controller with Athens.
 *
 * @author mpolden
 */
public interface Athens {

    String principalTokenHeader();
    AthensPrincipal principalFrom(ScrewdriverId screwdriverId);
    AthensPrincipal principalFrom(UserId userId);
    NTokenValidator validator();
    NToken nTokenFrom(String rawToken);
    ZmsClientFactory zmsClientFactory();
    AthensDomain screwdriverDomain();

}