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