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 ofTlsKeyManagersProvider
that 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.keyStoreType
properties defined by the JSSE.This uses
KeyManagerFactory.getDefaultAlgorithm()
to determine theKeyManagerFactory
algorithm to use.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SystemPropertyTlsKeyManagersProvider
create()
KeyManager[]
keyManagers()
-
Methods inherited from class software.amazon.awssdk.internal.http.AbstractFileStoreTlsKeyManagersProvider
createKeyManagers
-
-
-
-
Method Detail
-
keyManagers
public KeyManager[] keyManagers()
- Returns:
- The
KeyManager
s, ornull
.
-
create
public static SystemPropertyTlsKeyManagersProvider create()
-
-