Interface ReportMailingJobRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<ReportMailingJob,,Long> org.springframework.data.jpa.repository.JpaRepository<ReportMailingJob,,Long> org.springframework.data.jpa.repository.JpaSpecificationExecutor<ReportMailingJob>,org.springframework.data.repository.ListCrudRepository<ReportMailingJob,,Long> org.springframework.data.repository.ListPagingAndSortingRepository<ReportMailingJob,,Long> org.springframework.data.repository.PagingAndSortingRepository<ReportMailingJob,,Long> org.springframework.data.repository.query.QueryByExampleExecutor<ReportMailingJob>,org.springframework.data.repository.Repository<ReportMailingJob,Long>
public interface ReportMailingJobRepository
extends org.springframework.data.jpa.repository.JpaRepository<ReportMailingJob,Long>, org.springframework.data.jpa.repository.JpaSpecificationExecutor<ReportMailingJob>
-
Method Summary
Modifier and TypeMethodDescriptionReturns all instances ofReportMailingJobwhere isActive is true and isDeleted is falseMethods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor
count, delete, exists, findAll, findAll, findAll, findBy, findOneMethods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAllMethods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findByIsActiveTrueAndIsDeletedFalse
Collection<ReportMailingJob> findByIsActiveTrueAndIsDeletedFalse()Returns all instances ofReportMailingJobwhere isActive is true and isDeleted is false- Returns:
- instances of
ReportMailingJob
-