interface EngineSSLConnectorConfig : EngineConnectorConfig
Represents an SSL connector configuration.
abstract val keyAlias: String
TLS key alias |
|
abstract val keyStore: KeyStore
KeyStore where a certificate is stored |
|
abstract val keyStorePassword: () -> CharArray
Keystore password provider |
|
abstract val keyStorePath: File?
File where the keystore is located |
|
abstract val privateKeyPassword: () -> CharArray
Private key password provider |
abstract val host: String
The network interface this host binds to as an IP address or a hostname. If null or 0.0.0.0, then bind to all interfaces. |
|
abstract val port: Int
The port this application should be bound to. |
|
abstract val type: ConnectorType
Type of the connector, e.g HTTP or HTTPS. |
class EngineSSLConnectorBuilder : EngineConnectorBuilder, EngineSSLConnectorConfig
Mutable implementation of EngineSSLConnectorConfig for building connectors programmatically |