Interface UserRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<User,
,Long> org.springframework.data.repository.Repository<User,
Long>
@Repository
public interface UserRepository
extends org.springframework.data.repository.CrudRepository<User,Long>
The UserRepository is a repository for User entities.
-
Method Summary
Modifier and TypeMethodDescriptionfindByAlias
(String alias) This method returns a User entity with an alias.findByEmail
(String email) This method returns a User entity with a given email.This method returns a list of users with proposed alias that is not null.Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll
-
Method Details
-
findByEmail
This method returns a User entity with a given email.- Parameters:
email
- email address of the user- Returns:
- Optional of User (empty if not found)
-
findByAlias
This method returns a User entity with an alias.- Parameters:
alias
- alias of the user- Returns:
- Optional of User (empty if not found)
-
findByProposedAliasNotNull
This method returns a list of users with proposed alias that is not null.
-