Class CertificateConfig


  • public class CertificateConfig
    extends Object
    A certificate configuration. Either the certificate and key files must be given, or a key store must be given.
    • Field Detail

      • files

        @ConfigItem
        public Optional<List<Path>> files
        The list of path to server certificates using the PEM format. Specifying multiple files require SNI to be enabled.
      • keyFiles

        @ConfigItem
        public Optional<List<Path>> keyFiles
        The list of path to server certificates private key file using the PEM format. Specifying multiple files require SNI to be enabled. The order of the key files must match the order of the certificates.
      • keyStoreFile

        @ConfigItem
        public Optional<Path> keyStoreFile
        An optional key store which holds the certificate information instead of specifying separate files.
      • keyStoreFileType

        @ConfigItem
        public Optional<String> keyStoreFileType
        An optional parameter to specify type of the key store file. If not given, the type is automatically detected based on the file name.
      • keyStoreProvider

        @ConfigItem
        public Optional<String> keyStoreProvider
        An optional parameter to specify a provider of the key store file. If not given, the provider is automatically detected based on the key store file type.
      • keyStorePassword

        @ConfigItem(defaultValue="password")
        public String keyStorePassword
        A parameter to specify the password of the key store file. If not given, the default ("password") is used.
      • keyStoreKeyAlias

        @ConfigItem
        public Optional<String> keyStoreKeyAlias
        An optional parameter to select a specific key in the key store. When SNI is disabled, if the key store contains multiple keys and no alias is specified, the behavior is undefined.
      • trustStoreFile

        @ConfigItem
        public Optional<Path> trustStoreFile
        An optional trust store which holds the certificate information of the certificates to trust.
      • trustStoreFileType

        @ConfigItem
        public Optional<String> trustStoreFileType
        An optional parameter to specify type of the trust store file. If not given, the type is automatically detected based on the file name.
      • trustStoreProvider

        @ConfigItem
        public Optional<String> trustStoreProvider
        An optional parameter to specify a provider of the trust store file. If not given, the provider is automatically detected based on the trust store file type.
      • trustStorePassword

        @ConfigItem
        public Optional<String> trustStorePassword
        A parameter to specify the password of the trust store file.
      • trustStoreCertAlias

        @ConfigItem
        public Optional<String> trustStoreCertAlias
        An optional parameter to trust only one specific certificate in the trust store (instead of trusting all certificates in the store).
    • Constructor Detail

      • CertificateConfig

        public CertificateConfig()