Interface UserRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<Developer,Integer>, org.springframework.data.repository.ListCrudRepository<Developer,Integer>, org.springframework.data.repository.ListPagingAndSortingRepository<Developer,Integer>, org.springframework.data.mongodb.repository.MongoRepository<Developer,Integer>, org.springframework.data.repository.PagingAndSortingRepository<Developer,Integer>, org.springframework.data.repository.query.QueryByExampleExecutor<Developer>, org.springframework.data.querydsl.QuerydslPredicateExecutor<Developer>, org.springframework.data.repository.Repository<Developer,Integer>

public interface UserRepository extends org.springframework.data.mongodb.repository.MongoRepository<Developer,Integer>, org.springframework.data.querydsl.QuerydslPredicateExecutor<Developer>
  • Method Summary

    Modifier and Type
    Method
    Description
    findByregistrationApproved(boolean paramString)
     
    findByregistrationApprovedAndActive(boolean paramString, boolean isActive)
     
    findByUserId(long paramString)
     

    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.repository.ListCrudRepository

    findAll, findAllById, saveAll

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

    findAll

    Methods inherited from interface org.springframework.data.mongodb.repository.MongoRepository

    findAll, findAll, insert, insert

    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

    Methods inherited from interface org.springframework.data.querydsl.QuerydslPredicateExecutor

    count, exists, findAll, findAll, findAll, findAll, findAll, findBy, findOne
  • Method Details

    • findByregistrationApproved

      ArrayList<Developer> findByregistrationApproved(boolean paramString)
    • findByregistrationApprovedAndActive

      ArrayList<Developer> findByregistrationApprovedAndActive(boolean paramString, boolean isActive)
    • findByUserId

      Developer findByUserId(long paramString)