com.hexagonkt.http.SslSettings.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http Show documentation
Show all versions of http Show documentation
HTTP classes. These classes are shared among the HTTP client and the HTTP server.
The newest version!
package com.hexagonkt.http
import java.net.URL
data class SslSettings(
val keyStore: URL? = null,
val keyStorePassword: String = "",
val trustStore: URL? = null,
val trustStorePassword: String = "",
val clientAuth: Boolean = false
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy