TenantQuotaRepository

@Repository
interface TenantQuotaRepository : JpaRepository<TenantQuota, String> (source)

Functions

Link copied to clipboard
abstract fun count(): Long
abstract fun <S : TenantQuota> count(example: Example<S>): Long
Link copied to clipboard
abstract fun delete(entity: TenantQuota)
Link copied to clipboard
abstract fun deleteAll()
abstract fun deleteAll(entities: MutableIterable<TenantQuota>)
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 : TenantQuota> exists(example: Example<S>): Boolean
Link copied to clipboard
abstract fun existsById(id: String): Boolean
Link copied to clipboard
abstract override fun <S : TenantQuota> findAll(example: Example<S>): MutableList<S>
abstract override fun <S : TenantQuota> findAll(example: Example<S>, sort: Sort): MutableList<S>
abstract override fun findAll(): MutableList<TenantQuota>
abstract override fun findAll(sort: Sort): MutableList<TenantQuota>
abstract fun findAll(pageable: Pageable): Page<TenantQuota>
abstract fun <S : TenantQuota> findAll(example: Example<S>, pageable: Pageable): Page<S>
Link copied to clipboard
Link copied to clipboard
abstract fun <S : TenantQuota, R : Any> findBy(example: Example<S>, queryFunction: Function<FluentQuery.FetchableFluentQuery<S>, R>): R
Link copied to clipboard
abstract fun findById(id: String): Optional<TenantQuota>
abstract fun findByTenantIdAndResourceKeyAndPeriodStart(tenantId: String, resourceKey: String, periodStart: LocalDate): TenantQuota?
Link copied to clipboard
abstract fun <S : TenantQuota> findOne(example: Example<S>): Optional<S>
Link copied to clipboard
abstract fun flush()
Link copied to clipboard
abstract fun getById(id: String): TenantQuota
Link copied to clipboard
abstract fun getOne(id: String): TenantQuota
Link copied to clipboard
Link copied to clipboard
abstract fun <S : TenantQuota> save(entity: S): S
Link copied to clipboard
abstract override fun <S : TenantQuota> saveAll(entities: MutableIterable<S>): MutableList<S>
Link copied to clipboard
abstract fun <S : TenantQuota> saveAllAndFlush(entities: MutableIterable<S>): MutableList<S>
Link copied to clipboard
abstract fun <S : TenantQuota> saveAndFlush(entity: S): S