Home - All the pastes - Authored by Thooms
Raw version
1 2 3 4 5 6 7
public Account getByUsername(String username) { return accountRepository.findOneByEmail(username); } public Account getFromPrincipal(Principal principal) { return getByUsername(principal.getName()); }