Spring / Spring Interview questions II
What is the main strategy interface in Spring security?
The main strategy interface for authentication is AuthenticationManager which has only one method.
public interface AuthenticationManager { Authentication authenticate(Authentication authentication) throws AuthenticationException; }
More Related questions...