SSLConfig

open class SSLConfig(    val ssl: Boolean = false,     val keystorePass: String? = null,     val keystorePath: String? = null,     val truststorePass: String? = null,     val truststorePath: String? = null)

Configuration class for SSL settings.

Constructors

Link copied to clipboard
constructor(ssl: Boolean = false, keystorePass: String? = null, keystorePath: String? = null, truststorePass: String? = null, truststorePath: String? = null)

Properties

Link copied to clipboard
val keystorePass: String? = null

the password for the keystore

Link copied to clipboard
val keystorePath: String? = null

the path to the keystore file

Link copied to clipboard
val ssl: Boolean = false

specifies whether SSL should be enabled

Link copied to clipboard
val truststorePass: String? = null

the password for the truststore

Link copied to clipboard
val truststorePath: String? = null

the path to the truststore file