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 Type
    Method
    Description
    Find deviceId in table AuditAirship.

    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.jpa.repository.JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush

    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
  • Method Details

    • findByDeviceId

      AuditAirship findByDeviceId(String deviceId)
      Find deviceId in table AuditAirship.
      Parameters:
      deviceId - the device identifier.
      Returns:
      AuditAirship for the given deviceId.