Example usage for javax.net.ssl X509ExtendedKeyManager chooseEngineServerAlias

List of usage examples for javax.net.ssl X509ExtendedKeyManager chooseEngineServerAlias

Introduction

In this page you can find the example usage for javax.net.ssl X509ExtendedKeyManager chooseEngineServerAlias.

Prototype

public String chooseEngineServerAlias(String keyType, Principal[] issuers, SSLEngine engine) 

Source Link

Document

Choose an alias to authenticate the server side of an SSLEngine connection given the public key type and the list of certificate issuer authorities recognized by the peer (if any).

Usage

From source file:org.apache.hadoop.security.ssl.ReloadingX509KeyManager.java

@Override
public String chooseEngineServerAlias(String keyType, Principal[] issuers, SSLEngine engine) {
    X509ExtendedKeyManager km = keyManagerLocalRef.get();
    if (km != null) {
        return km.chooseEngineServerAlias(keyType, issuers, engine);
    }/*w  w  w .j a va  2  s.c o m*/
    return null;
}