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 @Nullable PemSslStore
PemSslStore.load
(@Nullable PemSslStoreDetails details) Return aPemSslStore
instance loaded using the givenPemSslStoreDetails
.static @Nullable PemSslStore
PemSslStore.load
(@Nullable PemSslStoreDetails details, ResourceLoader resourceLoader) Return aPemSslStore
instance loaded using the givenPemSslStoreDetails
.static PemSslStore
PemSslStore.of
(@Nullable String type, @Nullable String alias, @Nullable String password, List<X509Certificate> certificates, @Nullable PrivateKey privateKey) Factory method that can be used to create a newPemSslStore
with the given values.static PemSslStore
PemSslStore.of
(@Nullable String type, List<X509Certificate> certificates, @Nullable PrivateKey privateKey) Factory method that can be used to create a newPemSslStore
with the given values.static PemSslStore
PemSslStore.of
(List<X509Certificate> certificates, @Nullable 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
(@Nullable String password) Return a newPemSslStore
instance with a new password.Constructors in org.springframework.boot.ssl.pem with parameters of type PemSslStoreModifierConstructorDescriptionPemSslStoreBundle
(@Nullable PemSslStore pemKeyStore, @Nullable PemSslStore pemTrustStore) Create a newPemSslStoreBundle
instance.