Example usage for javax.net.ssl X509ExtendedKeyManager getClientAliases

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

Introduction

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

Prototype

public String[] getClientAliases(String keyType, Principal[] issuers);

Source Link

Document

Get the matching aliases for authenticating 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[] getClientAliases(String s, Principal[] principals) {
    X509ExtendedKeyManager km = keyManagerLocalRef.get();
    if (km != null) {
        return km.getClientAliases(s, principals);
    }//w w  w .j a va 2  s .  c  o  m
    return null;
}