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, status: UserStatus.Value = UserStatus.Inactive, superAdminMode: 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] = ..., termsOfServices: Option[UserTermsOfServices] = scala.None, lastLogin: Option[Date] = scala.None) 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, status: UserStatus.Value = UserStatus.Inactive, superAdminMode: 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] = ..., termsOfServices: Option[UserTermsOfServices] = scala.None, lastLogin: Option[Date] = scala.None)

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. def format(paren: Boolean): String

    Definition Classes
    User
  17. val friends: Option[List[String]]

    Definition Classes
    ClowderUserUser
  18. val fullName: String

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

    Definition Classes
    AnyRef → Any
  21. def getEmailHash: String

    returns

    lower case md5 hash of the user's email

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

    Definition Classes
    User
  23. def getMiniUser: MiniUser

    return MiniUser constructed from the user model

    return MiniUser constructed from the user model

    Definition Classes
    User
  24. val id: UUID

    Definition Classes
    ClowderUserUser
  25. val identityId: IdentityId

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

    Definition Classes
    Any
  27. val lastLogin: Option[Date]

    Definition Classes
    ClowderUserUser
  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. val status: UserStatus.Value

    Definition Classes
    ClowderUserUser
  39. val superAdminMode: Boolean

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

    Definition Classes
    AnyRef
  41. val termsOfServices: Option[UserTermsOfServices]

    Definition Classes
    ClowderUserUser
  42. def toString(): String

    Definition Classes
    User → AnyRef → Any
  43. val viewed: Option[List[UUID]]

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

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

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