Interface PersonRepository

  • All Superinterfaces:
    org.springframework.data.repository.CrudRepository<Person,​org.bson.types.ObjectId>, org.springframework.data.repository.PagingAndSortingRepository<Person,​org.bson.types.ObjectId>, org.springframework.data.repository.Repository<Person,​org.bson.types.ObjectId>

    public interface PersonRepository
    extends org.springframework.data.repository.PagingAndSortingRepository<Person,​org.bson.types.ObjectId>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Person findOneByName​(java.lang.String name)  
      • Methods inherited from interface org.springframework.data.repository.CrudRepository

        count, delete, deleteAll, deleteAll, deleteById, existsById, findAll, findAllById, findById, save, saveAll
      • Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

        findAll, findAll
    • Method Detail

      • findOneByName

        Person findOneByName​(java.lang.String name)