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

import com.yahoo.vespa.athenz.identity.ServiceIdentityProvider;

import javax.net.ssl.SSLSocketFactory;

/**
 * @author freva
 */
public interface ControllerIdentityProvider extends ServiceIdentityProvider {

    /** Returns SSLSocketFactory that creates appropriate sockets to talk to the different config servers */
    SSLSocketFactory getConfigServerSslSocketFactory();

}