Package org.openiam.esb.repository
Interface ReportSubscriptionRepository
-
- All Superinterfaces:
AbstractEntityRepository<ReportSubscriptionEntity,String>
,org.springframework.data.repository.CrudRepository<ReportSubscriptionEntity,String>
,org.springframework.data.jpa.repository.JpaRepository<ReportSubscriptionEntity,String>
,org.springframework.data.jpa.repository.JpaSpecificationExecutor<ReportSubscriptionEntity>
,org.springframework.data.repository.PagingAndSortingRepository<ReportSubscriptionEntity,String>
,org.springframework.data.repository.query.QueryByExampleExecutor<ReportSubscriptionEntity>
,org.springframework.data.repository.Repository<ReportSubscriptionEntity,String>
@Repository public interface ReportSubscriptionRepository extends AbstractEntityRepository<ReportSubscriptionEntity,String>
This is repository for working withReportSubscriptionEntity
- Author:
- Asker Kazharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReportSubscriptionEntity
findOneByName(String reportName)
GetReportSubscriptionEntity
list by reportName.-
Methods inherited from interface org.openiam.esb.repository.AbstractEntityRepository
getPageable
-
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, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor
count, exists, findAll, findAll, findAll, findOne
-
-
-
-
Method Detail
-
findOneByName
ReportSubscriptionEntity findOneByName(String reportName)
GetReportSubscriptionEntity
list by reportName.- Parameters:
reportName
- -ReportSubscriptionEntity
.name- Returns:
- list of
ReportSubscriptionEntity
-
-