Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. @AllArgsConstructor
  2. public class CustomAuthenticationProvider extends DaoAuthenticationProvider {
  3.  
  4. @Override
  5. protected void additionalAuthenticationChecks(UserDetails userDetails, UsernamePasswordAuthenticationToken authentication)
  6. throws AuthenticationException {
  7.  
  8. super.additionalAuthenticationChecks(userDetails, authentication);
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement