Uses of Interface
org.springframework.boot.ssl.pem.PemSslStore
Packages that use PemSslStore
Package
Description
SSL trust material provider for PEM-encoded certificates.
-
Uses of PemSslStore in org.springframework.boot.ssl.pem
Methods in org.springframework.boot.ssl.pem that return PemSslStoreModifier and TypeMethodDescriptionstatic PemSslStore
PemSslStore.load
(PemSslStoreDetails details) 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.Constructors in org.springframework.boot.ssl.pem with parameters of type PemSslStoreModifierConstructorDescriptionPemSslStoreBundle
(PemSslStore pemKeyStore, PemSslStore pemTrustStore) Create a newPemSslStoreBundle
instance.