models

ClowderUser

case class ClowderUser(id: UUID = UUID.generate(), identityId: IdentityId, firstName: String, lastName: String, fullName: String, email: Option[String], authMethod: AuthenticationMethod, avatarUrl: Option[String] = scala.None, oAuth1Info: Option[OAuth1Info] = scala.None, oAuth2Info: Option[OAuth2Info] = scala.None, passwordInfo: Option[PasswordInfo] = scala.None, active: Boolean = false, admin: Boolean = false, profile: Option[Profile] = scala.None, followedEntities: List[TypedID] = immutable.this.List.empty[Nothing], followers: List[UUID] = immutable.this.List.empty[Nothing], friends: Option[List[String]] = scala.None, viewed: Option[List[UUID]] = scala.None, spaceandrole: List[UserSpaceAndRole] = immutable.this.List.empty[Nothing], repositoryPreferences: Map[String, Any] = ...) extends User with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, User, Identity, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ClowderUser
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. User
  7. Identity
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ClowderUser(id: UUID = UUID.generate(), identityId: IdentityId, firstName: String, lastName: String, fullName: String, email: Option[String], authMethod: AuthenticationMethod, avatarUrl: Option[String] = scala.None, oAuth1Info: Option[OAuth1Info] = scala.None, oAuth2Info: Option[OAuth2Info] = scala.None, passwordInfo: Option[PasswordInfo] = scala.None, active: Boolean = false, admin: Boolean = false, profile: Option[Profile] = scala.None, followedEntities: List[TypedID] = immutable.this.List.empty[Nothing], followers: List[UUID] = immutable.this.List.empty[Nothing], friends: Option[List[String]] = scala.None, viewed: Option[List[UUID]] = scala.None, spaceandrole: List[UserSpaceAndRole] = immutable.this.List.empty[Nothing], repositoryPreferences: Map[String, Any] = ...)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val active: Boolean

    Definition Classes
    ClowderUserUser
  7. val admin: Boolean

    Definition Classes
    ClowderUserUser
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. val authMethod: AuthenticationMethod

    Definition Classes
    ClowderUser → Identity
  10. val avatarUrl: Option[String]

    Definition Classes
    ClowderUser → Identity
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. val email: Option[String]

    Definition Classes
    ClowderUser → Identity
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. val firstName: String

    Definition Classes
    ClowderUser → Identity
  16. val followedEntities: List[TypedID]

    Definition Classes
    ClowderUserUser
  17. val followers: List[UUID]

    Definition Classes
    ClowderUserUser
  18. val friends: Option[List[String]]

    Definition Classes
    ClowderUserUser
  19. val fullName: String

    Definition Classes
    ClowderUser → Identity
  20. def getAvatarUrl(size: Integer = 256): String

    Get the avatar URL for this user's profile If user has no avatar URL, this will return a unique URL based on the hash of this user's email address.

    Get the avatar URL for this user's profile If user has no avatar URL, this will return a unique URL based on the hash of this user's email address. Gravatar provide an image as specified in application.conf

    returns

    Full gravatar URL for the user's profile picture

    Definition Classes
    User
  21. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  22. def getEmailHash: String

    returns

    lower case md5 hash of the user's email

    Definition Classes
    User
  23. def getFollowedObjectList(objectType: String): List[TypedID]

    Definition Classes
    User
  24. def getMiniUser: MiniUser

    return MiniUser constructed from the user model

    return MiniUser constructed from the user model

    Definition Classes
    User
  25. val id: UUID

    Definition Classes
    ClowderUserUser
  26. val identityId: IdentityId

    Definition Classes
    ClowderUser → Identity
  27. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  28. val lastName: String

    Definition Classes
    ClowderUser → Identity
  29. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  32. val oAuth1Info: Option[OAuth1Info]

    Definition Classes
    ClowderUser → Identity
  33. val oAuth2Info: Option[OAuth2Info]

    Definition Classes
    ClowderUser → Identity
  34. val passwordInfo: Option[PasswordInfo]

    Definition Classes
    ClowderUser → Identity
  35. val profile: Option[Profile]

    Definition Classes
    ClowderUserUser
  36. val repositoryPreferences: Map[String, Any]

    Definition Classes
    ClowderUserUser
  37. val spaceandrole: List[UserSpaceAndRole]

    Definition Classes
    ClowderUserUser
  38. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  39. val viewed: Option[List[UUID]]

    Definition Classes
    ClowderUserUser
  40. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from User

Inherited from Identity

Inherited from AnyRef

Inherited from Any

Ungrouped