Interface AuditAirshipRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<AuditAirship,,String> org.springframework.data.jpa.repository.JpaRepository<AuditAirship,,String> org.springframework.data.repository.PagingAndSortingRepository<AuditAirship,,String> org.springframework.data.repository.query.QueryByExampleExecutor<AuditAirship>,org.springframework.data.repository.Repository<AuditAirship,String>
@Repository
public interface AuditAirshipRepository
extends org.springframework.data.jpa.repository.JpaRepository<AuditAirship,String>
Spring Data repository used to access the users in BBDD. See
User.-
Method Summary
Modifier and TypeMethodDescriptionfindByDeviceId(String deviceId) Find deviceId in table AuditAirship.Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findByDeviceId
Find deviceId in table AuditAirship.- Parameters:
deviceId- the device identifier.- Returns:
- AuditAirship for the given deviceId.
-