models

User

case class User(id: UUID = UUID.generate(), firstName: String, lastName: String, fullName: String, email: Option[String] = scala.None, avatarUrl: Option[String] = scala.None, provider: Provider, active: Boolean = false, serverAdmin: Boolean = false, 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, spaceandrole: List[UserSpaceAndRole] = immutable.this.List.empty[Nothing], repositoryPreferences: Map[String, Any] = ..., termsOfServices: Option[UserTermsOfServices] = scala.None, socialInformation: SocialInformation = ...) extends Product with Serializable

User definition

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

Instance Constructors

  1. new User(id: UUID = UUID.generate(), firstName: String, lastName: String, fullName: String, email: Option[String] = scala.None, avatarUrl: Option[String] = scala.None, provider: Provider, active: Boolean = false, serverAdmin: Boolean = false, 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, spaceandrole: List[UserSpaceAndRole] = immutable.this.List.empty[Nothing], repositoryPreferences: Map[String, Any] = ..., termsOfServices: Option[UserTermsOfServices] = scala.None, socialInformation: SocialInformation = ...)

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

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. val avatarUrl: Option[String]

  9. def clone(): AnyRef

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

  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

  14. val followedEntities: List[TypedID]

  15. val followers: List[UUID]

  16. def format(paren: Boolean): String

  17. val friends: Option[List[String]]

  18. val fullName: String

  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

  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def getEmailHash: String

    returns

    lower case md5 hash of the user's email

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

  23. def getMiniUser: MiniUser

    return MiniUser constructed from the user model

  24. val id: UUID

  25. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  26. val lastName: String

  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 profile: Option[Profile]

  31. val provider: Provider

  32. val repositoryPreferences: Map[String, Any]

  33. val serverAdmin: Boolean

  34. val socialInformation: SocialInformation

  35. val spaceandrole: List[UserSpaceAndRole]

  36. val superAdminMode: Boolean

  37. final def synchronized[T0](arg0: ⇒ T0): T0

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

  39. def toString(): String

    Definition Classes
    User → AnyRef → Any
  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 AnyRef

Inherited from Any

Ungrouped