p

auth

package auth

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class Authentication extends UnauthorizedHandler with I18nSupport
  2. case class ChangePasswordData (newPassword: ClearTextPassword) extends Product with Serializable
  3. class DefaultUnauthorizedHandler extends UnauthorizedHandler
  4. case class ForgotPasswordData (userId: UserId) extends Product with Serializable
  5. trait FormFormatterLike extends AnyRef

    Play Framework form field mapping formatters.

    Play Framework form field mapping formatters. To use, either mix in the forms.FormatterLike trait or import the forms.Formatters object.

  6. case class LoginData (userId: UserId, password: ClearTextPassword) extends Product with Serializable
  7. case class RequestWithUser [A](user: Option[User], request: Request[A]) extends WrappedRequest[A] with Product with Serializable

    A request that adds the User for the current call

  8. case class SignUpData (email: EMail, userId: UserId, clearTextPassword: ClearTextPassword, firstName: String, lastName: String) extends Product with Serializable
  9. trait UnauthorizedHandler extends AnyRef

Value Members

  1. object AuthForms extends FormFormatterLike
  2. object Authentication
  3. object FormFormatters extends FormFormatterLike
  4. object PasswordHasher

    Implementation of a password hasher based on BCrypt.

    Implementation of a password hasher based on BCrypt.

    See also

    gensalt

Ungrouped