All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.http4k.config.Host.kt Maven / Gradle / Ivy

package org.http4k.config

data class Host(val value: String) {
    init {
        require(value.isNotEmpty()) { "Could not construct Host from '$value'" }
    }

    fun asAuthority() = Authority(this)

    companion object {
        val localhost = Host("localhost")
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy