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

org.http4k.cloudnative.env.Port.kt Maven / Gradle / Ivy

There is a newer version: 5.45.1.0
Show newest version
package org.http4k.cloudnative.env

data class Port(val value: Int) {
    init {
        require(value <= 65535) { "Out of range Port: '$value'" }
    }

    companion object {
        val RANDOM = Port(0)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy