Custom Passwordless Authentication Tokens

You may also define your own token management store using the following bean definition and by implementing PasswordlessTokenRepository:

1
2
3
4
@Bean
public PasswordlessTokenRepository passwordlessTokenRepository() {
    ...
}

See this guide to learn more about how to register configurations into the CAS runtime.