Package io.jmix.core.security
Interface AddonAuthenticationManagerSupplier
- All Known Implementing Classes:
- ActiveDirectoryAuthenticationManagerSupplier,- LdapAuthenticationManagerSupplier,- RestAuthenticationManagerSupplier,- StandardAuthenticationManagerSupplier
public interface AddonAuthenticationManagerSupplier
Implementations of the interface are responsible for constructing a global 
AuthenticationManager.
 
 Several add-ons may provide an instance of AddonAuthenticationManagerSupplier. The AuthenticationManager
 produced by the instance with the highest order will be used in the application as a global AuthenticationManager.
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionorg.springframework.security.authentication.AuthenticationManagerReturns a global AuthenticationManager instance provided by an add-on.
- 
Method Details- 
getAuthenticationManagerorg.springframework.security.authentication.AuthenticationManager getAuthenticationManager()Returns a global AuthenticationManager instance provided by an add-on.- Returns:
- authentication manager
 
 
-