StageRepository

@Repository
interface StageRepository : JpaRepository<Stage, String> (source)

Functions

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