ChannelRepository

@Repository
interface ChannelRepository : JpaRepository<Channel, String> (source)

Functions

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