Package io.quarkus.oidc.runtime
Interface OidcTenantConfig.CertificateChain
- All Known Implementing Classes:
OidcTenantConfig.CertificateChain
- Enclosing interface:
- OidcTenantConfig
public static interface OidcTenantConfig.CertificateChain
Configuration of the certificate chain which can be used to verify tokens.
-
Method Summary
Modifier and TypeMethodDescriptionCommon name of the leaf certificate.A parameter to specify the alias of the truststore certificate.Truststore file which keeps thumbprints of the trusted certificates.An optional parameter to specify type of the truststore file.A parameter to specify the password of the truststore file if it is configured withtrustStoreFile().
-
Method Details
-
leafCertificateName
Common name of the leaf certificate. It must be set if thetrustStoreFile()does not have this certificate imported. -
trustStoreFile
Truststore file which keeps thumbprints of the trusted certificates. -
trustStorePassword
A parameter to specify the password of the truststore file if it is configured withtrustStoreFile(). -
trustStoreCertAlias
A parameter to specify the alias of the truststore certificate. -
trustStoreFileType
An optional parameter to specify type of the truststore file. If not given, the type is automatically detected based on the file name.
-