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

studio.crud.feature.auth.config.properties.mfa.AuthenticatorMfaProperties.kt Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package studio.crud.feature.auth.config.properties.mfa

import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.context.annotation.Configuration
import studio.crud.feature.auth.config.properties.MFA_CONFIG_PREFIX
import studio.crud.feature.core.config.ToggleableProperties

@Configuration
@ConfigurationProperties(AuthenticatorMfaProperties.PREFIX)
class AuthenticatorMfaProperties: ToggleableProperties("Authenticator MFA") {
        var issuer: String = "Not configured"

        companion object {
                const val PREFIX = "$MFA_CONFIG_PREFIX.authenticator"
        }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy