Difference in AuthenticationManager and AuthenticationProvider Authenticate method in Spring Security

Viewed 2418

Is there any difference in

Authentication auth= authenticationManager.authenticate(authentication);

and

 Authentication auth= authenticationProvider.authenticate(authentication);
1 Answers
Related