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

org.http4k.routing.experimental.URLResource.kt Maven / Gradle / Ivy

There is a newer version: 5.41.0.0
Show newest version
package org.http4k.routing.experimental

import org.http4k.core.ContentType
import java.io.InputStream
import java.net.URL
import java.time.Instant

data class URLResource(
    val url: URL,
    override val contentType: ContentType,
    override val lastModified: Instant? = null
) : Resource {
    override fun openStream(): InputStream = url.openStream()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy