UserSearchServiceImpl.java
package net.andresbustamante.yafoot.users.services.impl;
import net.andresbustamante.yafoot.commons.exceptions.DirectoryException;
import net.andresbustamante.yafoot.users.model.User;
import net.andresbustamante.yafoot.users.repository.UserRepository;
import net.andresbustamante.yafoot.users.services.UserSearchService;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import static org.springframework.transaction.annotation.Propagation.REQUIRES_NEW;
@Service
public class UserSearchServiceImpl implements UserSearchService {
private final UserRepository userRepository;
public UserSearchServiceImpl(final UserRepository userRepository) {
this.userRepository = userRepository;
}
@Override
@Transactional(readOnly = true, propagation = REQUIRES_NEW)
public User findUserByEmail(final String email) throws DirectoryException {
return userRepository.findUserByEmail(email);
}
}