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, 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]) 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, 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])

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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. val authMethod: AuthenticationMethod

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

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

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

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

    Definition Classes
    AnyRef
  12. def finalize(): Unit

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

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

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

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

    Definition Classes
    ClowderUserUser
  17. val fullName: String

    Definition Classes
    ClowderUser → Identity
  18. 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
  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def getEmailHash: String

    returns

    lower case md5 hash of the user's email

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

    Definition Classes
    User
  22. def getMiniUser: MiniUser

    return MiniUser constructed from the user model

    return MiniUser constructed from the user model

    Definition Classes
    User
  23. val id: UUID

    Definition Classes
    ClowderUserUser
  24. val identityId: IdentityId

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

    Definition Classes
    Any
  26. val lastName: String

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

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

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. 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