io.javalin.http.staticfiles.ResourceHandler.kt Maven / Gradle / Ivy
The newest version!
package io.javalin.http.staticfiles
import javax.servlet.http.HttpServletRequest
import javax.servlet.http.HttpServletResponse
enum class Location { CLASSPATH, EXTERNAL; }
interface ResourceHandler {
fun handle(httpRequest: HttpServletRequest, httpResponse: HttpServletResponse): Boolean
fun addStaticFileConfig(config: StaticFileConfig)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy