Record Class PemSslStoreDetails

java.lang.Object
java.lang.Record
cn.taketoday.core.ssl.pem.PemSslStoreDetails
记录组件:
type - the key store type, for example JKS or PKCS11. A null value will use KeyStore.getDefaultType()).
alias - the alias used when setting entries in the KeyStore
password - the password used setting key entries in the KeyStore
certificates - the certificates content (either the PEM content itself or or a reference to the resource to load). When a private key is present this value is treated as a certificate chain, otherwise it is treated a list of certificates that should all be registered.
privateKey - the private key content (either the PEM content itself or a reference to the resource to load)
privateKeyPassword - a password used to decrypt an encrypted private key

public record PemSslStoreDetails(String type, String alias, String password, String certificates, String privateKey, String privateKeyPassword) extends Record
Details for an individual trust or key store in a PemSslStoreBundle.
从以下版本开始:
4.0
作者:
Scott Frederick, Phillip Webb, Harry Yang