BannedIpAddressesRepository

interface BannedIpAddressesRepository : JpaRepository<BannedIpAddress, Long>

Functions

Link copied to clipboard
abstract fun count(): Long
abstract fun <S : BannedIpAddress> count(example: Example<S>): Long
Link copied to clipboard
abstract fun delete(entity: BannedIpAddress)
Link copied to clipboard
abstract fun deleteAll()
abstract fun deleteAll(entities: MutableIterable<BannedIpAddress>)
Link copied to clipboard
abstract fun deleteAllById(ids: MutableIterable<Long>)
Link copied to clipboard
Link copied to clipboard
abstract fun deleteAllInBatch()
abstract fun deleteAllInBatch(entities: MutableIterable<BannedIpAddress>)
Link copied to clipboard
abstract fun deleteById(id: Long)
Link copied to clipboard
open fun deleteInBatch(entities: MutableIterable<BannedIpAddress>)
Link copied to clipboard
abstract fun <S : BannedIpAddress> exists(example: Example<S>): Boolean
Link copied to clipboard
abstract fun existsById(id: Long): Boolean
Link copied to clipboard
abstract override fun <S : BannedIpAddress> findAll(example: Example<S>): MutableList<S>
abstract override fun <S : BannedIpAddress> findAll(example: Example<S>, sort: Sort): MutableList<S>
abstract override fun findAll(): MutableList<BannedIpAddress>
abstract override fun findAll(sort: Sort): MutableList<BannedIpAddress>
abstract fun findAll(pageable: Pageable): Page<BannedIpAddress>
abstract fun <S : BannedIpAddress> findAll(example: Example<S>, pageable: Pageable): Page<S>
Link copied to clipboard
abstract override fun findAllById(ids: MutableIterable<Long>): MutableList<BannedIpAddress>
Link copied to clipboard
abstract fun <S : BannedIpAddress, R : Any> findBy(example: Example<S>, queryFunction: Function<FluentQuery.FetchableFluentQuery<S>, R>): R
Link copied to clipboard
abstract fun findById(id: Long): Optional<BannedIpAddress>
Link copied to clipboard
abstract fun <S : BannedIpAddress> findOne(example: Example<S>): Optional<S>
Link copied to clipboard
abstract fun flush()
Link copied to clipboard
abstract fun getById(id: Long): BannedIpAddress
Link copied to clipboard
abstract fun getOne(id: Long): BannedIpAddress
Link copied to clipboard
abstract fun getReferenceById(id: Long): BannedIpAddress
Link copied to clipboard
abstract fun <S : BannedIpAddress> save(entity: S): S
Link copied to clipboard
abstract override fun <S : BannedIpAddress> saveAll(entities: MutableIterable<S>): MutableList<S>
Link copied to clipboard
abstract fun <S : BannedIpAddress> saveAllAndFlush(entities: MutableIterable<S>): MutableList<S>
Link copied to clipboard
abstract fun <S : BannedIpAddress> saveAndFlush(entity: S): S