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

org.http4k.connect.common.kt Maven / Gradle / Ivy

package org.http4k.connect

import org.http4k.core.Method
import org.http4k.core.Request
import org.http4k.core.Response
import org.http4k.core.Status
import org.http4k.core.Uri
import kotlin.reflect.KClass

interface Action {
    fun toRequest(): Request
    fun toResult(response: Response): R
}

data class RemoteFailure(val method: Method, val uri: Uri, val status: Status, val message: String? = null) {
    fun throwIt(): Nothing = throw Exception(toString())
}

inline fun  kClass(): KClass = T::class




© 2015 - 2025 Weber Informatics LLC | Privacy Policy