aboutsummaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/security/NodeHostnameVerifier.java
blob: 1d78bb74683844b8addb0f54d9887637d2018f7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.provision.security;

import javax.net.ssl.SSLSession;

/**
 * @author bjorncs
 */
public interface NodeHostnameVerifier {
    boolean verify(String hostname, SSLSession session);
}