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, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UserAndMetadata
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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 productElementNames: Iterator[String]
    Definition Classes
    Product
  10. def productIterator: Iterator[Any]
    Definition Classes
    Product
  11. def user: User
  12. val username: String