java.lang.Object
io.javalin.community.ssl.SSLConfig.InnerConfig
- Enclosing class:
- SSLConfig
Configuration for the SSL (secure) connector, meant to be accessed using its setters.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumType of identity loading types. -
Field Summary
FieldsModifier and TypeFieldDescription@Nullable StringName of the key store file in the classpath.@Nullable InputStreamInput stream to the key store file.@Nullable StringPassword for the key store.@Nullable PathPath to the key store file.@Nullable StringName of the certificate chain PEM file in the classpath.@Nullable InputStreamInput stream to the certificate chain PEM file.@Nullable PathPath to the PEM certificate chain PEM file.@Nullable StringCertificate chain as a PEM encoded string.@Nullable StringName of the private key PEM file in the classpath.@Nullable InputStreamInput stream to the private key PEM file.@Nullable PathPath to the private key PEM file.@Nullable StringPrivate key as a PEM encoded string.@Nullable StringPassword for the private key. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
pemCertificatesFile
Name of the certificate chain PEM file in the classpath. -
pemPrivateKeyFile
Name of the private key PEM file in the classpath. -
pemCertificatesInputStream
Input stream to the certificate chain PEM file. -
pemPrivateKeyInputStream
Input stream to the private key PEM file. -
pemCertificatesPath
Path to the PEM certificate chain PEM file. -
pemPrivateKeyPath
Path to the private key PEM file. -
pemCertificatesString
Certificate chain as a PEM encoded string. -
pemPrivateKeyString
Private key as a PEM encoded string. -
privateKeyPassword
Password for the private key. -
keyStorePath
Path to the key store file. -
keyStoreFile
Name of the key store file in the classpath. -
keyStoreInputStream
Input stream to the key store file. -
keyStorePassword
Password for the key store.
-
-
Constructor Details
-
InnerConfig
public InnerConfig()
-