aboutsummaryrefslogtreecommitdiffstats
path: root/zookeeper-server/zookeeper-server-common/src/main/java/com/yahoo/vespa/zookeeper/VespaSslContextProvider.java
blob: 5434804cd62df5f740777e1ba273329cdae8b6a2 (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
24
25
26
27
28
29
30
31
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.zookeeper;

import com.yahoo.security.tls.TlsContext;

import javax.net.ssl.SSLContext;
import java.util.function.Supplier;

/**
 * Provider for Vespa {@link SSLContext} instance to Zookeeper.
 *
 * @author bjorncs
 */
public class VespaSslContextProvider implements Supplier<SSLContext> {

    private static TlsContext tlsContext;

    @Override
    public SSLContext get() {
        synchronized (VespaSslContextProvider.class) {
            if (tlsContext == null) throw new IllegalStateException("Vespa TLS is not enabled");
            return tlsContext.context();
        }
    }

    static synchronized void set(TlsContext ctx) {
        if (tlsContext != null) tlsContext.close();
        tlsContext = ctx;
    }

}