12.5.5 Creating your own authentication method
To make available a new authentication method in Kauri, you only need to implement one interface:
org.kauriproject.security.AuthenticationMethod
The implementation then needs to be instantiated as a bean in a Spring
container of a module, and referred to from within the
The existing implementations in the Kauri source code might provide some inspiration.
Previous