X509ExtendedKeyManager (Java SE 9 & JDK 9 ) (original) (raw)
- javax.net.ssl.X509ExtendedKeyManager
All Implemented Interfaces:
[KeyManager](../../../javax/net/ssl/KeyManager.html "interface in javax.net.ssl")
,[X509KeyManager](../../../javax/net/ssl/X509KeyManager.html "interface in javax.net.ssl")
public abstract class X509ExtendedKeyManager
extends Object
implements X509KeyManager
Abstract class that provides for extension of the X509KeyManager interface.
Methods in this class should be overriden to provide actual implementations.
Since:
1.5
Constructor Summary
Constructors
Modifier Constructor Description protected X509ExtendedKeyManager() Constructor used by subclasses only. Method Summary
All Methods Instance Methods Concrete Methods
Modifier and Type Method Description String chooseEngineClientAlias(String[] keyType,Principal[] issuers,SSLEngine engine) Choose an alias to authenticate the client side of anSSLEngine connection given the public key type and the list of certificate issuer authorities recognized by the peer (if any). String chooseEngineServerAlias(String keyType,Principal[] issuers,SSLEngine engine) Choose an alias to authenticate the server side of anSSLEngine connection given the public key type and the list of certificate issuer authorities recognized by the peer (if any). * ### Methods inherited from class java.lang.[Object](../../../java/lang/Object.html "class in java.lang") `[clone](../../../java/lang/Object.html#clone--), [equals](../../../java/lang/Object.html#equals-java.lang.Object-), [finalize](../../../java/lang/Object.html#finalize--), [getClass](../../../java/lang/Object.html#getClass--), [hashCode](../../../java/lang/Object.html#hashCode--), [notify](../../../java/lang/Object.html#notify--), [notifyAll](../../../java/lang/Object.html#notifyAll--), [toString](../../../java/lang/Object.html#toString--), [wait](../../../java/lang/Object.html#wait--), [wait](../../../java/lang/Object.html#wait-long-), [wait](../../../java/lang/Object.html#wait-long-int-)` * ### Methods inherited from interface javax.net.ssl.[X509KeyManager](../../../javax/net/ssl/X509KeyManager.html "interface in javax.net.ssl") `[chooseClientAlias](../../../javax/net/ssl/X509KeyManager.html#chooseClientAlias-java.lang.String:A-java.security.Principal:A-java.net.Socket-), [chooseServerAlias](../../../javax/net/ssl/X509KeyManager.html#chooseServerAlias-java.lang.String-java.security.Principal:A-java.net.Socket-), [getCertificateChain](../../../javax/net/ssl/X509KeyManager.html#getCertificateChain-java.lang.String-), [getClientAliases](../../../javax/net/ssl/X509KeyManager.html#getClientAliases-java.lang.String-java.security.Principal:A-), [getPrivateKey](../../../javax/net/ssl/X509KeyManager.html#getPrivateKey-java.lang.String-), [getServerAliases](../../../javax/net/ssl/X509KeyManager.html#getServerAliases-java.lang.String-java.security.Principal:A-)`
Constructor Detail
* #### X509ExtendedKeyManager protected X509ExtendedKeyManager() Constructor used by subclasses only.
Method Detail
* #### chooseEngineClientAlias public [String](../../../java/lang/String.html "class in java.lang") chooseEngineClientAlias([String](../../../java/lang/String.html "class in java.lang")[] keyType, [Principal](../../../java/security/Principal.html "interface in java.security")[] issuers, [SSLEngine](../../../javax/net/ssl/SSLEngine.html "class in javax.net.ssl") engine) Choose an alias to authenticate the client side of an`SSLEngine` connection given the public key type and the list of certificate issuer authorities recognized by the peer (if any). The default implementation returns null. Parameters: `keyType` \- the key algorithm type name(s), ordered with the most-preferred key type first. `issuers` \- the list of acceptable CA issuer subject names or null if it does not matter which issuers are used. `engine` \- the `SSLEngine` to be used for this connection. This parameter can be null, which indicates that implementations of this interface are free to select an alias applicable to any engine. Returns: the alias name for the desired key, or null if there are no matches. * #### chooseEngineServerAlias public [String](../../../java/lang/String.html "class in java.lang") chooseEngineServerAlias([String](../../../java/lang/String.html "class in java.lang") keyType, [Principal](../../../java/security/Principal.html "interface in java.security")[] issuers, [SSLEngine](../../../javax/net/ssl/SSLEngine.html "class in javax.net.ssl") engine) 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). The default implementation returns null. Parameters: `keyType` \- the key algorithm type name. `issuers` \- the list of acceptable CA issuer subject names or null if it does not matter which issuers are used. `engine` \- the `SSLEngine` to be used for this connection. This parameter can be null, which indicates that implementations of this interface are free to select an alias applicable to any engine. Returns: the alias name for the desired key, or null if there are no matches.
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2017, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.