Class SSLConfig.InnerConfig

java.lang.Object
io.javalin.community.ssl.SSLConfig.InnerConfig
Enclosing class:
SSLConfig

public static class SSLConfig.InnerConfig extends Object
Configuration for the SSL (secure) connector, meant to be accessed using its setters.
  • Field Details

    • pemCertificatesFile

      @Nullable public @Nullable String pemCertificatesFile
      Name of the certificate chain PEM file in the classpath.
    • pemPrivateKeyFile

      @Nullable public @Nullable String pemPrivateKeyFile
      Name of the private key PEM file in the classpath.
    • pemCertificatesInputStream

      @Nullable public @Nullable InputStream pemCertificatesInputStream
      Input stream to the certificate chain PEM file.
    • pemPrivateKeyInputStream

      @Nullable public @Nullable InputStream pemPrivateKeyInputStream
      Input stream to the private key PEM file.
    • pemCertificatesPath

      @Nullable public @Nullable Path pemCertificatesPath
      Path to the PEM certificate chain PEM file.
    • pemPrivateKeyPath

      @Nullable public @Nullable Path pemPrivateKeyPath
      Path to the private key PEM file.
    • pemCertificatesString

      @Nullable public @Nullable String pemCertificatesString
      Certificate chain as a PEM encoded string.
    • pemPrivateKeyString

      @Nullable public @Nullable String pemPrivateKeyString
      Private key as a PEM encoded string.
    • privateKeyPassword

      @Nullable public @Nullable String privateKeyPassword
      Password for the private key.
    • keyStorePath

      @Nullable public @Nullable Path keyStorePath
      Path to the key store file.
    • keyStoreFile

      @Nullable public @Nullable String keyStoreFile
      Name of the key store file in the classpath.
    • keyStoreInputStream

      @Nullable public @Nullable InputStream keyStoreInputStream
      Input stream to the key store file.
    • keyStorePassword

      @Nullable public @Nullable String keyStorePassword
      Password for the key store.
  • Constructor Details

    • InnerConfig

      public InnerConfig()