package security
Type Members
- case class Account(id: Long, clientId: Long = 0, email: String, token: String = null, username: String = null, firstName: String = null, lastName: String = null, bio: String = null, isActive: Boolean, isVerify: Boolean, isChangePass: Boolean = false, permissions: Set[String] = Set.empty) extends Product with Serializable
- case class AuthenticationToken(token: String, accountId: Long) extends Product with Serializable
- trait AuthorizationManager extends AnyRef
- case class RestPermission(method: Method, action: String) extends Product with Serializable