Package software.amazon.awssdk.http
Class SystemPropertyTlsKeyManagersProvider
- java.lang.Object
-
- software.amazon.awssdk.internal.http.AbstractFileStoreTlsKeyManagersProvider
-
- software.amazon.awssdk.http.SystemPropertyTlsKeyManagersProvider
-
- All Implemented Interfaces:
TlsKeyManagersProvider
public final class SystemPropertyTlsKeyManagersProvider extends AbstractFileStoreTlsKeyManagersProvider
Implementation ofTlsKeyManagersProviderthat gets the information about the KeyStore to load from the system properties.This provider checks the standard
javax.net.ssl.keyStore,javax.net.ssl.keyStorePassword, andjavax.net.ssl.keyStoreTypeproperties defined by the JSSE.This uses
KeyManagerFactory.getDefaultAlgorithm()to determine theKeyManagerFactoryalgorithm to use.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SystemPropertyTlsKeyManagersProvidercreate()KeyManager[]keyManagers()-
Methods inherited from class software.amazon.awssdk.internal.http.AbstractFileStoreTlsKeyManagersProvider
createKeyManagers
-
-
-
-
Method Detail
-
keyManagers
public KeyManager[] keyManagers()
- Returns:
- The
KeyManagers, ornull.
-
create
public static SystemPropertyTlsKeyManagersProvider create()
-
-