UserRepository

Repository to manage users.

Inheritors

Functions

Link copied to clipboard
abstract fun connect(host: String, port: String, dbName: String, username: String, password: String)
Link copied to clipboard
abstract fun deleteById(id: User.UserID): User?
Link copied to clipboard
abstract fun findAll(): Array<User>
Link copied to clipboard
abstract fun findById(id: User.UserID): User?
Link copied to clipboard
abstract fun save(entity: User)
Link copied to clipboard
abstract fun update(entity: User)