Interface GroupRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<Group,
,String> org.springframework.data.jpa.repository.JpaRepository<Group,
,String> org.springframework.data.repository.ListCrudRepository<Group,
,String> org.springframework.data.repository.ListPagingAndSortingRepository<Group,
,String> org.springframework.data.repository.PagingAndSortingRepository<Group,
,String> QlackBaseRepository<Group,
,String> org.springframework.data.repository.query.QueryByExampleExecutor<Group>
,org.springframework.data.querydsl.QuerydslPredicateExecutor<Group>
,org.springframework.data.repository.Repository<Group,
String>
An interface Repository for Group that is used to declare abstract methord
for crud operations
- Author:
- European Dynamics SA
-
Method Summary
Modifier and TypeMethodDescriptionfindByTitle
(String title) An abstract method that is used to retrieve group by its titleMethods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush
Methods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAll
Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll
Methods inherited from interface com.eurodyn.qlack.common.repository.QlackBaseRepository
fetchById, findAll, findAll
Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
Methods inherited from interface org.springframework.data.querydsl.QuerydslPredicateExecutor
count, exists, findAll, findAll, findAll, findBy, findOne
-
Method Details
-
findByTitle
An abstract method that is used to retrieve group by its title- Parameters:
title
- the title description of group- Returns:
- the group by its title
-