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

org.http4k.core.Accept.kt Maven / Gradle / Ivy

package org.http4k.core

data class Accept(val contentTypes: List, val directives: Parameters) {

    /**
     * Note that the Accept header ignores CharSet because that is in a separate Accept-CharSet header..
     */
    fun accepts(contentType: ContentType): Boolean = contentTypes.any { it.equalsIgnoringDirectives(contentType)}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy