PipelineRepository

@Repository
interface PipelineRepository : JpaRepository<Pipeline, String> (source)

Functions

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