Uses of Record Class
org.springframework.boot.ssl.pem.PemSslStoreDetails
Package
Description
SSL trust material provider for PEM-encoded certificates.
-
Uses of PemSslStoreDetails in org.springframework.boot.ssl.pem
Modifier and TypeMethodDescriptionstatic PemSslStoreDetails
PemSslStoreDetails.forCertificate
(String certificate) Factory method to create a newPemSslStoreDetails
instance for the given certificate.static PemSslStoreDetails
PemSslStoreDetails.forCertificates
(String certificates) Factory method to create a newPemSslStoreDetails
instance for the given certificates.Return a newPemSslStoreDetails
instance with a new alias.PemSslStoreDetails.withPassword
(String password) Return a newPemSslStoreDetails
instance with a new password.PemSslStoreDetails.withPrivateKey
(String privateKey) Return a newPemSslStoreDetails
instance with a new private key.PemSslStoreDetails.withPrivateKeyPassword
(String privateKeyPassword) Return a newPemSslStoreDetails
instance with a new private key password.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
.ModifierConstructorDescriptionPemSslStoreBundle
(PemSslStoreDetails keyStoreDetails, PemSslStoreDetails trustStoreDetails) Create a newPemSslStoreBundle
instance.