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