Interface FilterableRepository<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.List<T> findByFilter​(Queryable filter)
      Executes query built for given filter
      org.springframework.data.domain.Page<T> findByFilter​(Queryable filter, org.springframework.data.domain.Pageable pageable)
      Executes query built for given filter and maps result for given page
    • Method Detail

      • findByFilter

        java.util.List<T> findByFilter​(Queryable filter)
        Executes query built for given filter
        Parameters:
        filter - Filter to build a query
        Returns:
        List of mapped entries found
      • findByFilter

        org.springframework.data.domain.Page<T> findByFilter​(Queryable filter,
                                                             org.springframework.data.domain.Pageable pageable)
        Executes query built for given filter and maps result for given page
        Parameters:
        filter - Filter to build a query
        pageable - Pageable
        Returns:
        List of mapped entries found