securesocial.core.java

BaseUserService

abstract class BaseUserService extends UserServicePlugin

Linear Supertypes
UserServicePlugin, UserService, Plugin, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BaseUserService
  2. UserServicePlugin
  3. UserService
  4. Plugin
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BaseUserService(application: Application)

Abstract Value Members

  1. abstract def doDeleteExpiredTokens(): Unit

  2. abstract def doDeleteToken(uuid: String): Unit

  3. abstract def doFind(identityId: IdentityId): Identity

  4. abstract def doFindByEmailAndProvider(email: String, providerId: String): Identity

  5. abstract def doFindToken(tokenId: String): Token

  6. abstract def doSave(token: Token): Unit

  7. abstract def doSave(user: Identity): Identity

Concrete 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 DefaultInterval: Int

    Definition Classes
    UserServicePlugin
  7. val DeleteIntervalKey: String

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

    Definition Classes
    Any
  9. var cancellable: Option[Cancellable]

    Definition Classes
    UserServicePlugin
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def deleteExpiredTokens(): Unit

    Deletes all expired tokens

    Deletes all expired tokens

    Note: If you do not plan to use the UsernamePassword provider just provide en empty implementation

    Definition Classes
    BaseUserServiceUserService
  12. def deleteToken(uuid: String): Unit

    Deletes a token

    Deletes a token

    Note: If you do not plan to use the UsernamePassword provider just provide en empty implementation

    uuid

    the token id

    Definition Classes
    BaseUserServiceUserService
  13. def enabled: Boolean

    Definition Classes
    Plugin
  14. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def find(id: IdentityId): Option[Identity]

    Finds a SocialUser that maches the specified id

    Finds a SocialUser that maches the specified id

    id

    the user id

    returns

    an optional user

    Definition Classes
    BaseUserServiceUserService
  18. def findByEmailAndProvider(email: String, providerId: String): Option[Identity]

    Finds a Social user by email and provider id.

    Finds a Social user by email and provider id.

    Note: If you do not plan to use the UsernamePassword provider just provide en empty implementation.

    email

    - the user email

    providerId

    - the provider id

    returns

    Definition Classes
    BaseUserServiceUserService
  19. def findToken(token: String): Option[providers.Token]

    Finds a token

    Finds a token

    Note: If you do not plan to use the UsernamePassword provider just provide en empty implementation

    token

    the token id

    returns

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

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  26. def onStart(): Unit

    Registers this object so SecureSocial can invoke it.

    Registers this object so SecureSocial can invoke it.

    Definition Classes
    UserServicePlugin → Plugin
  27. def onStop(): Unit

    Definition Classes
    UserServicePlugin → Plugin
  28. def save(token: providers.Token): Unit

    Saves a token.

    Saves a token. This is needed for users that are creating an account in the system instead of using one in a 3rd party system.

    Note: If you do not plan to use the UsernamePassword provider just provide en empty implementation

    token

    The token to save

    Definition Classes
    BaseUserServiceUserService
  29. def save(user: Identity): Identity

    Saves the user.

    Saves the user. This method gets called when a user logs in. This is your chance to save the user information in your backing store.

    user

    Definition Classes
    BaseUserServiceUserService
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toString(): String

    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from UserServicePlugin

Inherited from UserService

Inherited from Plugin

Inherited from AnyRef

Inherited from Any

Ungrouped