Package com.skava.accounts.repository
Interface AccountHistoryRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<AccountHistoryEntity,
,Long> org.springframework.data.jpa.repository.JpaRepository<AccountHistoryEntity,
,Long> org.springframework.data.repository.ListCrudRepository<AccountHistoryEntity,
,Long> org.springframework.data.repository.ListPagingAndSortingRepository<AccountHistoryEntity,
,Long> org.springframework.data.repository.PagingAndSortingRepository<AccountHistoryEntity,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<AccountHistoryEntity>
,org.springframework.data.querydsl.QuerydslPredicateExecutor<AccountHistoryEntity>
,org.springframework.data.repository.Repository<AccountHistoryEntity,
Long>
public interface AccountHistoryRepository
extends org.springframework.data.jpa.repository.JpaRepository<AccountHistoryEntity,Long>, org.springframework.data.querydsl.QuerydslPredicateExecutor<AccountHistoryEntity>
The Interface AccountsHistoryRepository extends another JpaRepository which contains all default crud operations.
AccountsHistoryRepository contains customized methods definitions for the operations in Collection entity.
- Author:
- Infosys Equinox
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.data.domain.Page<AccountHistoryEntity>
findAll
(org.springframework.data.jpa.domain.Specification<AccountHistoryEntity> specification, org.springframework.data.domain.Pageable pageRequest) Find all AccountsHistoryEntity based on the inputs.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
Methods inherited from interface org.springframework.data.querydsl.QuerydslPredicateExecutor
count, exists, findAll, findAll, findAll, findAll, findAll, findBy, findOne
-
Method Details
-
findAll
org.springframework.data.domain.Page<AccountHistoryEntity> findAll(org.springframework.data.jpa.domain.Specification<AccountHistoryEntity> specification, org.springframework.data.domain.Pageable pageRequest) Find all AccountsHistoryEntity based on the inputs.- Parameters:
specification
- contains all search criteria like accountId=1, teamId=2pageRequest
- contains pageable information like page, size- Returns:
- the list of AccountsHistoryEntity
-