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

main.dev.neeffect.nee.security.oauth.OauthProviderName.kt Maven / Gradle / Ivy

The newest version!
package dev.neeffect.nee.security.oauth

import io.vavr.control.Option
import io.vavr.kotlin.option

enum class OauthProviderName(val providerName: String) {
    Google("google"),
    Github("github");

    fun getByName(name: String): Option = OauthProviderName.values().find {
        name == it.providerName
    }.option()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy