Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package org.mm.MBlog.security.services;
- import org.springframework.security.core.userdetails.UserDetails;
- import org.springframework.security.core.userdetails.UsernameNotFoundException;
- public interface UserDetailsService {
- UserDetails loadUserByUsername(String username) throws UsernameNotFoundException;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement