AccessGroupRepository

@Repository
interface AccessGroupRepository : JpaRepository<AccessGroup, String> (source)

Functions

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