Example usage for javax.net.ssl X509ExtendedKeyManager chooseClientAlias

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

Introduction

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

Prototype

public String chooseClientAlias(String[] keyType, Principal[] issuers, Socket socket);

Source Link

Document

Choose an alias to authenticate the client side of a secure socket 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 chooseClientAlias(String[] strings, Principal[] principals, Socket socket) {
    X509ExtendedKeyManager km = keyManagerLocalRef.get();
    if (km != null) {
        return km.chooseClientAlias(strings, principals, socket);
    }//from  www  . j a va  2 s. c om
    return null;
}