Package com.skava.auth.repository
Interface PrivilegeSetRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<PrivilegeSet,
,Long> org.springframework.data.jpa.repository.JpaRepository<PrivilegeSet,
,Long> org.springframework.data.repository.ListCrudRepository<PrivilegeSet,
,Long> org.springframework.data.repository.ListPagingAndSortingRepository<PrivilegeSet,
,Long> org.springframework.data.repository.PagingAndSortingRepository<PrivilegeSet,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<PrivilegeSet>
,org.springframework.data.repository.Repository<PrivilegeSet,
Long>
public interface PrivilegeSetRepository
extends org.springframework.data.jpa.repository.JpaRepository<PrivilegeSet,Long>
Repository class to represent the data access layer of the `privilegeset` entity.
- Author:
- Infosys Equinox
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.data.domain.Page<PrivilegeSet>
findByCollectionId
(Long collectionId, org.springframework.data.domain.Pageable pageRequest) Find by collection id.Methods 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 org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findByCollectionId
org.springframework.data.domain.Page<PrivilegeSet> findByCollectionId(Long collectionId, org.springframework.data.domain.Pageable pageRequest) Find by collection id.- Parameters:
collectionId
- The collection id.pageRequest
- The page request.- Returns:
- The page.
-