Interface ReportInfoRepository

  • All Superinterfaces:
    org.springframework.data.repository.CrudRepository<ReportInfoEntity,​String>, org.springframework.data.jpa.repository.JpaRepository<ReportInfoEntity,​String>, org.springframework.data.jpa.repository.JpaSpecificationExecutor<ReportInfoEntity>, org.springframework.data.repository.PagingAndSortingRepository<ReportInfoEntity,​String>, org.springframework.data.repository.query.QueryByExampleExecutor<ReportInfoEntity>, org.springframework.data.repository.Repository<ReportInfoEntity,​String>

    @Repository
    public interface ReportInfoRepository
    extends org.springframework.data.jpa.repository.JpaRepository<ReportInfoEntity,​String>, org.springframework.data.jpa.repository.JpaSpecificationExecutor<ReportInfoEntity>
    This is repository for working with ReportInfo
    Author:
    Andrey Lezhebokov
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      List<ReportInfoEntity> findAllByActiveTrue​(org.springframework.data.domain.Pageable pageable)  
      ReportInfoEntity findByName​(String name)
      Get ReportInfo list by name
      • 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
      • 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 Detail

      • findByName

        ReportInfoEntity findByName​(String name)
        Get ReportInfo list by name
        Parameters:
        name -
        Returns:
      • findAllByActiveTrue

        List<ReportInfoEntity> findAllByActiveTrue​(org.springframework.data.domain.Pageable pageable)