UserRole

data class UserRole(val userName: String, val hashBytes: ByteArray? = null, val roles: List<Role>, val passwordHash: String = Base64.getEncoder().encodeToString(hashBytes))

Entries consist of username, list of roles, hashed password.

Constructors

Link copied to clipboard
constructor(userName: String, hashBytes: ByteArray? = null, roles: List<Role>, passwordHash: String = Base64.getEncoder().encodeToString(hashBytes))

Properties

Link copied to clipboard
val hashBytes: ByteArray? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard