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

org.http4k.security.digest.Qop.kt Maven / Gradle / Ivy

There is a newer version: 5.31.1.0
Show newest version
package org.http4k.security.digest

/**
 * Quality-of-Protection describes the security level of the Authorization challenge
 */
enum class Qop(val value: String) {
    AuthInt("auth-int"),
    Auth("auth");

    companion object {
        fun from(value: String) = values().firstOrNull { it.value == value }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy