AuditLogRepository

@Repository
interface AuditLogRepository : MongoRepository<AuditLog, String> (source)

Functions

Link copied to clipboard
abstract fun count(): Long
abstract fun <S : AuditLog> count(example: Example<S>): Long
Link copied to clipboard
abstract fun delete(entity: AuditLog)
Link copied to clipboard
abstract fun deleteAll()
abstract fun deleteAll(entities: MutableIterable<AuditLog>)
Link copied to clipboard
Link copied to clipboard
abstract fun deleteById(id: String)
Link copied to clipboard
abstract fun <S : AuditLog> exists(example: Example<S>): Boolean
Link copied to clipboard
abstract fun existsById(id: String): Boolean
Link copied to clipboard
abstract override fun <S : AuditLog> findAll(example: Example<S>): MutableList<S>
abstract override fun <S : AuditLog> findAll(example: Example<S>, sort: Sort): MutableList<S>
abstract override fun findAll(): MutableList<AuditLog>
abstract override fun findAll(sort: Sort): MutableList<AuditLog>
abstract fun findAll(pageable: Pageable): Page<AuditLog>
abstract fun <S : AuditLog> findAll(example: Example<S>, pageable: Pageable): Page<S>
Link copied to clipboard
abstract override fun findAllById(ids: MutableIterable<String>): MutableList<AuditLog>
Link copied to clipboard
abstract fun <S : AuditLog, R : Any> findBy(example: Example<S>, queryFunction: Function<FluentQuery.FetchableFluentQuery<S>, R>): R
Link copied to clipboard
Link copied to clipboard
abstract fun findById(id: String): Optional<AuditLog>
Link copied to clipboard
abstract fun <S : AuditLog> findOne(example: Example<S>): Optional<S>
Link copied to clipboard
abstract fun <S : AuditLog> insert(entity: S): S
abstract fun <S : AuditLog> insert(entities: MutableIterable<S>): MutableList<S>
Link copied to clipboard
abstract fun <S : AuditLog> save(entity: S): S
Link copied to clipboard
abstract override fun <S : AuditLog> saveAll(entities: MutableIterable<S>): MutableList<S>