Uses of Interface
org.springframework.boot.ssl.pem.PemSslStore
Package
Description
SSL trust material provider for PEM-encoded certificates.
-
Uses of PemSslStore in org.springframework.boot.ssl.pem
Modifier and TypeMethodDescriptionstatic PemSslStore
PemSslStore.load
(PemSslStoreDetails details) Return aPemSslStore
instance loaded using the givenPemSslStoreDetails
.static PemSslStore
PemSslStore.load
(PemSslStoreDetails details, ResourceLoader resourceLoader) Return aPemSslStore
instance loaded using the givenPemSslStoreDetails
.static PemSslStore
PemSslStore.of
(String type, String alias, String password, List<X509Certificate> certificates, PrivateKey privateKey) Factory method that can be used to create a newPemSslStore
with the given values.static PemSslStore
PemSslStore.of
(String type, List<X509Certificate> certificates, PrivateKey privateKey) Factory method that can be used to create a newPemSslStore
with the given values.static PemSslStore
PemSslStore.of
(List<X509Certificate> certificates, PrivateKey privateKey) Factory method that can be used to create a newPemSslStore
with the given values.default PemSslStore
Return a newPemSslStore
instance with a new alias.default PemSslStore
PemSslStore.withPassword
(String password) Return a newPemSslStore
instance with a new password.ModifierConstructorDescriptionPemSslStoreBundle
(PemSslStore pemKeyStore, PemSslStore pemTrustStore) Create a newPemSslStoreBundle
instance.