Packages

case class UserAndMetadata(domain: AuthDomain, username: String, displayName: String, _effectiveRoles: Seq[RoleAndOrigins], _passwordChanged: Option[String] = None, groups: Seq[String] = Seq(), externalGroups: Seq[String] = Seq()) extends Product with Serializable

Associates a User with any derived properties, such as the effective roles inherited from groups.

Annotations
@Volatile()
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UserAndMetadata
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new UserAndMetadata(domain: AuthDomain, username: String, displayName: String, _effectiveRoles: Seq[RoleAndOrigins], _passwordChanged: Option[String] = None, groups: Seq[String] = Seq(), externalGroups: Seq[String] = Seq())

Value Members

  1. val _passwordChanged: Option[String]
  2. val displayName: String
  3. val domain: AuthDomain
  4. def effectiveRoles: Seq[RoleAndOrigins]

    Returns all of the user's roles, including roles inherited from groups.

  5. val externalGroups: Seq[String]
  6. val groups: Seq[String]
  7. def innateRoles: Seq[Role]

    Returns the roles assigned specifically to the user.

    Returns the roles assigned specifically to the user. Excludes roles that are only inherited from groups.

  8. def passwordChanged: Option[Instant]
  9. def user: User
  10. val username: String