Interface UpdateCollection

All Superinterfaces:
org.springframework.data.repository.PagingAndSortingRepository<Update,org.bson.types.ObjectId>, org.springframework.data.repository.Repository<Update,org.bson.types.ObjectId>

@Repository public interface UpdateCollection extends org.springframework.data.repository.PagingAndSortingRepository<Update,org.bson.types.ObjectId>
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.data.domain.Page<Update>
    findAll(org.springframework.data.domain.Pageable pageable)
     
    org.springframework.data.domain.Page<Update>
    findByQuarter(String quarter, org.springframework.data.domain.Pageable pageable)
     
    org.springframework.data.domain.Page<Update>
    findBySubjectArea(String subjectArea, org.springframework.data.domain.Pageable pageable)
     
    org.springframework.data.domain.Page<Update>
    findBySubjectAreaAndQuarter(String subjectArea, String quarter, org.springframework.data.domain.Pageable pageable)
     
    save(Update update)
     

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll
  • Method Details

    • save

      Update save(Update update)
    • findBySubjectAreaAndQuarter

      org.springframework.data.domain.Page<Update> findBySubjectAreaAndQuarter(String subjectArea, String quarter, org.springframework.data.domain.Pageable pageable)
    • findByQuarter

      org.springframework.data.domain.Page<Update> findByQuarter(String quarter, org.springframework.data.domain.Pageable pageable)
    • findBySubjectArea

      org.springframework.data.domain.Page<Update> findBySubjectArea(String subjectArea, org.springframework.data.domain.Pageable pageable)
    • findAll

      org.springframework.data.domain.Page<Update> findAll(org.springframework.data.domain.Pageable pageable)
      Specified by:
      findAll in interface org.springframework.data.repository.PagingAndSortingRepository<Update,org.bson.types.ObjectId>