类 PemSslStoreBundle
java.lang.Object
org.springframework.boot.ssl.pem.PemSslStoreBundle
- 所有已实现的接口:
SslStoreBundle
SslStoreBundle
backed by PEM-encoded certificates and private keys.- 从以下版本开始:
- 3.1.0
- 作者:
- Scott Frederick, Phillip Webb, Moritz Halbritter
-
字段概要
从接口继承的字段 org.springframework.boot.ssl.SslStoreBundle
NONE
-
构造器概要
构造器构造器说明PemSslStoreBundle
(PemSslStoreDetails keyStoreDetails, PemSslStoreDetails trustStoreDetails) Create a newPemSslStoreBundle
instance.PemSslStoreBundle
(PemSslStore pemKeyStore, PemSslStore pemTrustStore) Create a newPemSslStoreBundle
instance. -
方法概要
修饰符和类型方法说明Return a key store generated from the trust material ornull
.Return the password for the key in the key store ornull
.Return a trust store generated from the trust material ornull
.toString()
-
构造器详细资料
-
PemSslStoreBundle
Create a newPemSslStoreBundle
instance.- 参数:
keyStoreDetails
- the key store detailstrustStoreDetails
- the trust store details
-
PemSslStoreBundle
Create a newPemSslStoreBundle
instance.- 参数:
pemKeyStore
- the PEM key storepemTrustStore
- the PEM trust store- 从以下版本开始:
- 3.2.0
-
-
方法详细资料
-
getKeyStore
从接口复制的说明:SslStoreBundle
Return a key store generated from the trust material ornull
.- 指定者:
getKeyStore
在接口中SslStoreBundle
- 返回:
- the key store
-
getKeyStorePassword
从接口复制的说明:SslStoreBundle
Return the password for the key in the key store ornull
.- 指定者:
getKeyStorePassword
在接口中SslStoreBundle
- 返回:
- the key password
-
getTrustStore
从接口复制的说明:SslStoreBundle
Return a trust store generated from the trust material ornull
.- 指定者:
getTrustStore
在接口中SslStoreBundle
- 返回:
- the trust store
-
toString
-