Blame view

src/main/java/etunicorn/UserDetailsService.java 326 Bytes
34526d92   Geoffrey PREUD'HOMME   WIP Authentification
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;
  }