Interface PersistentTokenRepository
- 
- All Superinterfaces:
 org.springframework.data.repository.CrudRepository<PersistentToken,String>,org.springframework.data.jpa.repository.JpaRepository<PersistentToken,String>,org.springframework.data.repository.PagingAndSortingRepository<PersistentToken,String>,org.springframework.data.repository.query.QueryByExampleExecutor<PersistentToken>,org.springframework.data.repository.Repository<PersistentToken,String>
public interface PersistentTokenRepository extends org.springframework.data.jpa.repository.JpaRepository<PersistentToken,String>
Spring Data JPA repository for the PersistentToken entity. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<PersistentToken>findByTokenDateBefore(LocalDate localDate)List<PersistentToken>findByUser(User user)- 
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findById, save 
- 
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlush 
 - 
 
 - 
 
- 
- 
Method Detail
- 
findByUser
List<PersistentToken> findByUser(User user)
 
- 
findByTokenDateBefore
List<PersistentToken> findByTokenDateBefore(LocalDate localDate)
 
 - 
 
 -