public String[] getServerAliases(String keyType, Principal[] issuers) { return keyManager.getServerAliases(keyType, issuers); }
/** * Get the matching aliases for authenticating the server side of a secure socket, given the * public key type and the list of certificate issuer authorities recognized by the peer (if any). * * @param keyType The key algorithm type name * @param issuers The list of acceptable CA issuer subject names, or null if it does not matter * which issuers are used * @return Array of the matching alias names, or null if there were no matches */ public String[] getServerAliases(String keyType, Principal[] issuers) { return delegate.getServerAliases(keyType, issuers); }
public String[] getServerAliases(String keyType, Principal[] issuers) { System.out.println("Calling from X509KeyManager"); return km.getServerAliases(keyType, issuers); }
public String[] getServerAliases(String s, Principal[] principals) { return wrapped.getServerAliases(s, principals); }
public String[] getServerAliases(String arg0, Principal[] arg1) { return pkixKeyManager.getServerAliases(arg0, arg1); }