BannedIpAddressEntityService

@Service
class BannedIpAddressEntityService @Autowired constructor(repository: BannedIpAddressRepository) : BaseEntityService<BannedIpAddress, Long, BannedIpAddressRepository>

Constructors

Link copied to clipboard
@Autowired
constructor(repository: BannedIpAddressRepository)

Properties

Link copied to clipboard
Link copied to clipboard
val repository: BannedIpAddressRepository

Functions

Link copied to clipboard
open override fun count(): Long
Link copied to clipboard
open override fun delete(entity: BannedIpAddress): Boolean
Link copied to clipboard
open override fun deleteAll(entities: List<BannedIpAddress>): Boolean
Link copied to clipboard
open override fun deleteById(id: Long): Boolean
Link copied to clipboard
open override fun deleteIfExists(entity: BannedIpAddress): Boolean
Link copied to clipboard
open override fun exists(entity: BannedIpAddress): Boolean
Link copied to clipboard
open override fun existsById(id: Long): Boolean
Link copied to clipboard
open override fun findAll(): List<BannedIpAddress>
Link copied to clipboard
open override fun findById(id: Long): Optional<BannedIpAddress>
Link copied to clipboard
open override fun findByIds(ids: List<Long>): List<BannedIpAddress>
Link copied to clipboard
open override fun save(entity: BannedIpAddress): BannedIpAddress
Link copied to clipboard
open override fun saveAll(entities: List<BannedIpAddress>): List<BannedIpAddress>
Link copied to clipboard
open override fun saveIfNew(entity: BannedIpAddress): BannedIpAddress
Link copied to clipboard
open override fun update(entity: BannedIpAddress): BannedIpAddress
Link copied to clipboard
open override fun updateAll(entities: List<BannedIpAddress>): List<BannedIpAddress>