1 2 3 4 5 6 7 8 9 10 11
package etunicorn; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.core.userdetails.UsernameNotFoundException; /** * Created by geoffrey on 29/01/17. */ public interface UserDetailsService { UserDetails loadByUsername(String s) throws UsernameNotFoundException; }