main.io.github.smiley4.ktorswaggerui.data.AuthScheme.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktor-swagger-ui Show documentation
Show all versions of ktor-swagger-ui Show documentation
Ktor plugin to document routes and provide a Swagger-UI
package io.github.smiley4.ktorswaggerui.data
// https://www.iana.org/assignments/http-authschemes/http-authschemes.xhtml
enum class AuthScheme(val swaggerType: String) {
BASIC("Basic"),
BEARER("bearer"),
DIGEST("Digest"),
HOBA("HOBA"),
MUTUAL("Mutual"),
OAUTH("OAuth"),
SCRAM_SHA_1("SCRAM-SHA-1"),
SCRAM_SHA_256("SCRAM-SHA-256"),
VAPID("vapid")
}