UserDetailsService.java
326 Bytes
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;
}