Trait/Object

com.mohiva.play.silhouette.impl.providers

PasswordProvider

Related Docs: object PasswordProvider | package providers

Permalink

trait PasswordProvider extends Provider with ExecutionContextProvider

Base provider which provides shared functionality to authenticate with a password.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PasswordProvider
  2. ExecutionContextProvider
  3. Provider
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class InvalidPassword(error: String) extends State with Product with Serializable

    Permalink

    Indicates that the entered password doesn't match with the stored one.

  2. case class NotFound(error: String) extends State with Product with Serializable

    Permalink

    Indicates that no password info was stored for the login info.

  3. sealed trait State extends AnyRef

    Permalink

    The authentication state.

  4. case class UnsupportedHasher(error: String) extends State with Product with Serializable

    Permalink

    Indicates that the stored password cannot be checked with the registered hashers.

Abstract Value Members

  1. abstract val authInfoRepository: AuthInfoRepository

    Permalink

    The auth info repository.

    The auth info repository.

    Attributes
    protected
  2. implicit abstract val executionContext: ExecutionContext

    Permalink

    The execution context to handle the asynchronous operations.

    The execution context to handle the asynchronous operations.

    Definition Classes
    ExecutionContextProvider
  3. abstract def id: String

    Permalink

    Gets the provider ID.

    Gets the provider ID.

    returns

    The provider ID.

    Definition Classes
    Provider
  4. abstract val passwordHasherRegistry: PasswordHasherRegistry

    Permalink

    The password hashers used by the application.

    The password hashers used by the application.

    Attributes
    protected

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Authenticated extends State with Product with Serializable

    Permalink

    Indicates that the authentication was successful.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def authenticate(loginInfo: LoginInfo, password: String): Future[State]

    Permalink

    Authenticates a user

    Authenticates a user

    loginInfo

    The login info to search the password info for.

    password

    The user password to authenticate with.

    returns

    The authentication state.

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  18. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ExecutionContextProvider

Inherited from Provider

Inherited from AnyRef

Inherited from Any

Ungrouped